const sveltePreprocess = require('svelte-preprocess'); const vercel = require('@sveltejs/adapter-vercel'); const pkg = require('./package.json'); /** @type {import('@sveltejs/kit').Config} */ module.exports = { // 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' } };