From 6528c0e79e525cc32c657be3627228a55ab4148a Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Sun, 9 Mar 2025 14:14:00 +0100 Subject: [PATCH] fix: update allowedHosts configuration to true --- astro.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 6561343..71be042 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -20,10 +20,10 @@ export default defineConfig({ vite: { plugins: [tailwindcss()], server: { - allowedHosts: ['*'] + allowedHosts: true }, preview: { - allowedHosts: ['*'] + allowedHosts: true } } }); \ No newline at end of file