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