From 513989e9c96375031f319b038b549cea7e4c5810 Mon Sep 17 00:00:00 2001 From: Nathan Windisch Date: Sun, 9 Mar 2025 05:42:29 +0000 Subject: [PATCH] added another known host to vite config --- vite.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index 49708cf..40bd9d9 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,6 +12,10 @@ export default defineConfig({ }, }, server: { - allowedHosts: ["tis.apps.nathanwindisch.com", "tid.apps.wnd.sh"], + allowedHosts: [ + "tis.apps.nathanwindisch.com", + "tid.apps.wnd.sh", + "tid.main.apps.nathanwindisch.com", + ], }, });