import adapter from '@sveltejs/adapter-static'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: vitePreprocess(), onwarn: (warning, handler) => { if (warning.code.startsWith('a11y_')) return; handler(warning); }, kit: { adapter: adapter({ fallback: 'index.html' }), }, }; export default config;