From 7ad2e13fe61be0cc043a9a1a8629539a617f4e13 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Mon, 9 Mar 2026 20:59:28 +0700 Subject: [PATCH] fix: Add moreminimore.com to vite allowedHosts for preview --- astro.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 7cc142f..e95d1e4 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -11,6 +11,10 @@ export default defineConfig({ mode: 'standalone' }), vite: { - plugins: [tailwindcss()] + plugins: [tailwindcss()], + server: { + host: true, + allowedHosts: ['moreminimore.com', 'www.moreminimore.com', 'localhost'] + } } }); \ No newline at end of file