chore: update allowedHosts to accept all hosts

This commit is contained in:
2025-03-09 14:11:32 +01:00
parent 5634704a3f
commit fc47a93671
2 changed files with 3 additions and 2 deletions

View File

@ -20,10 +20,10 @@ export default defineConfig({
vite: { vite: {
plugins: [tailwindcss()], plugins: [tailwindcss()],
server: { server: {
allowedHosts: ['jleibl.net'] allowedHosts: ['*']
}, },
preview: { preview: {
allowedHosts: ['jleibl.net'] allowedHosts: ['*']
} }
} }
}); });

View File

@ -6,6 +6,7 @@
"dev": "astro dev", "dev": "astro dev",
"build": "astro build", "build": "astro build",
"preview": "astro preview", "preview": "astro preview",
"start": "astro dev --host",
"lint": "astro check" "lint": "astro check"
}, },
"dependencies": { "dependencies": {