22 lines
		
	
	
		
			363 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			363 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import adapter from '@sveltejs/adapter-static';
 | |
| import preprocess from 'svelte-preprocess';
 | |
| 
 | |
| /** @type {import('@sveltejs/kit').Config} */
 | |
| const config = {
 | |
| 	preprocess: [
 | |
| 		preprocess({
 | |
| 			postcss: true
 | |
| 		})
 | |
| 	],
 | |
| 	kit: {
 | |
| 		adapter: adapter({
 | |
| 			pages: 'build',
 | |
| 			assets: 'build',
 | |
| 			fallback: 'index.html',
 | |
| 			precompress: true
 | |
| 		})
 | |
| 	}
 | |
| };
 | |
| 
 | |
| export default config;
 | 
