Fix vite config

This commit is contained in:
2025-01-24 21:41:07 -06:00
parent 42886da20c
commit 052369293f
+7 -1
View File
@@ -2,5 +2,11 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite'; import { defineConfig } from 'vite';
export default defineConfig({ export default defineConfig({
plugins: [sveltekit()] plugins: [sveltekit()],
preview: {
allowedHosts: true
},
server: {
allowedHosts: true
}
}); });