fix: allowed hosts

This commit is contained in:
2025-03-10 06:53:12 -04:00
parent ec75142396
commit c5c3871e1d

View File

@@ -2,5 +2,8 @@ import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite'; import { defineConfig } from 'vite';
export default defineConfig({ export default defineConfig({
plugins: [sveltekit()] plugins: [sveltekit()],
server: {
allowedHosts: true,
},
}); });