42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| import adapter from '@sveltejs/adapter-static';
 | |
| import * as child_process from 'node:child_process';
 | |
| import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
 | |
| 
 | |
| /** @type {import('@sveltejs/kit').Config} */
 | |
| const config = {
 | |
| 	// Consult https://kit.svelte.dev/docs/integrations#preprocessors
 | |
| 	// for more information about preprocessors
 | |
| 	preprocess: vitePreprocess(),
 | |
| 	kit: {
 | |
| 		// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
 | |
| 		// If your environment is not supported or you settled on a specific environment, switch out the adapter.
 | |
| 		// See https://kit.svelte.dev/docs/adapters for more information about adapters.
 | |
| 		adapter: adapter({
 | |
| 			pages: 'build',
 | |
| 			assets: 'build',
 | |
| 			fallback: 'index.html'
 | |
| 		}),
 | |
| 		// poll for new version name every 60 seconds (to trigger reload mechanic in +layout.svelte)
 | |
| 		version: {
 | |
| 			name: child_process.execSync('git rev-parse HEAD').toString().trim(),
 | |
| 			pollInterval: 60000
 | |
| 		}
 | |
| 	},
 | |
| 	vitePlugin: {
 | |
| 		// inspector: {
 | |
| 		// 	toggleKeyCombo: 'meta-shift', // Key combination to open the inspector
 | |
| 		// 	holdMode: false, // Enable or disable hold mode
 | |
| 		// 	showToggleButton: 'always', // Show toggle button ('always', 'active', 'never')
 | |
| 		// 	toggleButtonPos: 'bottom-right' // Position of the toggle button
 | |
| 		// }
 | |
| 	},
 | |
| 	onwarn: (warning, handler) => {
 | |
| 		const { code } = warning;
 | |
| 		if (code === 'css-unused-selector') return;
 | |
| 
 | |
| 		handler(warning);
 | |
| 	}
 | |
| };
 | |
| 
 | |
| export default config;
 |