From fd60f74d4ae6acd059374b19bf4a45e6e813911d Mon Sep 17 00:00:00 2001 From: "William D. Jones" Date: Fri, 2 Jan 2026 13:43:43 -0600 Subject: [PATCH] Updated vite.config.ts --- frontend/vite.config.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 20066b5..144adce 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -11,6 +11,13 @@ export default defineConfig({ }, server: { host: true, - port: 5173, + port: 80, + allowedHosts: [ + 'localhost', + '.letsgetnashty.com', + 'h2h.host.letsgetnashty.com', + 'h2h-backend.host.letsgetnashty.com', + 'h2h-frontend.host.letsgetnashty.com', + ], }, })