svelte.config.js (336B)
1 import adapter from '@sveltejs/adapter-static'; 2 import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 4 /** @type {import('@sveltejs/kit').Config} */ 5 const config = { 6 preprocess: vitePreprocess(), 7 kit: { 8 adapter: adapter({ 9 pages: 'build', 10 assets: 'build', 11 fallback: 'index.html' 12 }) 13 }, 14 }; 15 16 export default config;