From 5634704a3f306380f30a4f5dcc89c1bcc8c70e39 Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Sun, 9 Mar 2025 14:09:59 +0100 Subject: [PATCH] feat(config): add preview allowedHosts configuration --- astro.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index 0831eff..558c7b0 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -21,6 +21,9 @@ export default defineConfig({ plugins: [tailwindcss()], server: { allowedHosts: ['jleibl.net'] + }, + preview: { + allowedHosts: ['jleibl.net'] } } }); \ No newline at end of file