From e53499e1660ac7b773501cc41ee923bb975cef6a Mon Sep 17 00:00:00 2001 From: scadmin Date: Mon, 15 Dec 2025 21:08:19 +0000 Subject: [PATCH] Allowed hosts didn't work so I added it to the astro.config.mjs. --- astro.config.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index 0dbd924..a833828 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -8,4 +8,13 @@ import { defineConfig } from 'astro/config'; export default defineConfig({ site: 'https://example.com', integrations: [mdx(), sitemap()], + vite: { + server: { + allowedHosts: [ + "seans.cloud", + "www.seans.cloud", + ".seans.cloud", // allows all subdomains too + ], + }, + }, });