From 087edc508ee134c36678acb8799bf5d000e33447 Mon Sep 17 00:00:00 2001 From: Nathan Windisch Date: Sun, 9 Mar 2025 05:44:42 +0000 Subject: [PATCH] fixed typo in server.allowedHosts --- vite.config.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 40bd9d9..3f4acf3 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -12,10 +12,6 @@ export default defineConfig({ }, }, server: { - allowedHosts: [ - "tis.apps.nathanwindisch.com", - "tid.apps.wnd.sh", - "tid.main.apps.nathanwindisch.com", - ], + allowedHosts: ["tid.apps.nathanwindisch.com", "tid.apps.wnd.sh"], }, });