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: {
plugins: [tailwindcss()],
server: {
allowedHosts: ['jleibl.net']
allowedHosts: ['*']
},
preview: {
allowedHosts: ['jleibl.net']
allowedHosts: ['*']
}
}
});

View File

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