From 4bb4b0ca3afe1ef6015e986d47f4352b0bacea6d Mon Sep 17 00:00:00 2001 From: MangoPig Date: Tue, 9 Dec 2025 17:33:38 +0000 Subject: [PATCH] Fixed? --- 00-Lesson-Site/frontend/astro.config.mjs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/00-Lesson-Site/frontend/astro.config.mjs b/00-Lesson-Site/frontend/astro.config.mjs index cdfc8f0..4160aaa 100644 --- a/00-Lesson-Site/frontend/astro.config.mjs +++ b/00-Lesson-Site/frontend/astro.config.mjs @@ -21,5 +21,11 @@ export default defineConfig({ }, }, }, + server: { + host: true, + port: 4321, + strictPort: true, + allowedHosts: ["leafpig.mangopig.tech"], //Remember to add domain here if deploying + }, }, });