import sveltePreprocess from "svelte-preprocess"; import vercel from "@sveltejs/adapter-vercel"; /** @type {import("@sveltejs/kit").Config} */ const config = { // Consult https://github.com/sveltejs/svelte-preprocess // for more information about preprocessors preprocess: [ sveltePreprocess({ postcss: true, }), ], kit: { adapter: vercel(), // hydrate the
element in src/app.html target: "#svelte", }, }; export default config;