aboutsummaryrefslogtreecommitdiff
path: root/ui/svelte.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/svelte.config.js')
-rw-r--r--ui/svelte.config.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/svelte.config.js b/ui/svelte.config.js
new file mode 100644
index 0000000..87f198f
--- /dev/null
+++ b/ui/svelte.config.js
@@ -0,0 +1,15 @@
+import adapter from '@sveltejs/adapter-auto';
+import { vitePreprocess } from '@sveltejs/kit/vite';
+
+/** @type {import('@sveltejs/kit').Config} */
+const config = {
+ // Consult https://kit.svelte.dev/docs/integrations#preprocessors
+ // for more information about preprocessors
+ preprocess: vitePreprocess(),
+
+ kit: {
+ adapter: adapter()
+ }
+};
+
+export default config;