mirror of
				https://github.com/SphericalKat/medium.rip.git
				synced 2025-10-31 19:05:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			259 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { resolve } from 'path'
 | |
| import { defineConfig } from 'vite'
 | |
| 
 | |
| export default defineConfig({
 | |
|   build: {
 | |
|     rollupOptions: {
 | |
|       input: {
 | |
|         main: resolve(__dirname, 'index.html'),
 | |
|         show: resolve(__dirname, 'show.html')
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| }) |