diff --git a/svelte.config.js b/svelte.config.js index 01bac29..4c25e27 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -2,11 +2,13 @@ import adapter from '@sveltejs/adapter-auto'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; - const config = { kit: { adapter: adapter() }, - preprocess: vitePreprocess() + preprocess: vitePreprocess(), + compilerOptions: { + customElement: true, + } }; export default config;