From 82cc635e266afa55a0063a9cd6712a750292e6f5 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Fri, 13 Mar 2026 09:18:52 +0700 Subject: [PATCH] Allow Easypanel hosts in preview server --- astro.config.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index cd76a2256..42c3e9151 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -26,5 +26,9 @@ export default defineConfig({ build: { cssMinify: true, }, + server: { + host: true, + allowedHosts: ['.easypanel.host', '.extyye.easypanel.host'], + }, }, });