From c82aa23b41590fcc1a5d042d8cac133b260d5262 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Sun, 9 Mar 2025 14:36:45 +0100 Subject: [PATCH] chore: add allowedHosts to server and preview config --- astro.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index 6f753cd..a6040c2 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -20,9 +20,12 @@ export default defineConfig({ vite: { plugins: [tailwindcss()], server: { + allowedHosts: ['jleibl.net'], port: 4321 }, + preview: { + allowedHosts: ['jleibl.net'], port: 4321 } }