aboutsummaryrefslogtreecommitdiff
path: root/web/ui/vite.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/ui/vite.config.js')
-rw-r--r--web/ui/vite.config.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/ui/vite.config.js b/web/ui/vite.config.js
new file mode 100644
index 0000000..7c321da
--- /dev/null
+++ b/web/ui/vite.config.js
@@ -0,0 +1,9 @@
+import { sveltekit } from '@sveltejs/kit/vite';
+import { defineConfig } from 'vite';
+
+export default defineConfig({
+ plugins: [sveltekit()],
+ server: {
+ port: 5174
+ }
+});