1 2 3 4 5 6 7 8 9 10 11 12
import adapter from '@sveltejs/adapter-static'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; const config = { preprocess: vitePreprocess(), kit: { adapter: adapter(), output: { bundleStrategy: 'single' } } }; export default config;