From f3e5aaa2f444caa2b590b4fb13f66c4abc47b760 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Sun, 9 Mar 2025 14:18:58 +0100 Subject: [PATCH] chore: restrict allowedHosts to jleibl.net --- astro.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 3d382b1..01c1965 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -20,10 +20,10 @@ export default defineConfig({ vite: { plugins: [tailwindcss()], server: { - allowedHosts: '*' + allowedHosts: 'jleibl.net' }, preview: { - allowedHosts: '*', + allowedHosts: 'jleibl.net', port: 4321 } }