import preprocess from "svelte-preprocess"; import staticAdapter from '@sveltejs/adapter-static'; /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { // hydrate the
element in src/app.html target: '#svelte', adapter: staticAdapter(), files: { assets: 'static' } }, preprocess: [preprocess({ "postcss": true })] }; export default config;