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 + ], + }, + }, });