From 0a024b7ed3bcac057802942990ccc45512b34604 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 9 May 2026 16:30:22 +0530 Subject: [PATCH] Add www versions to allowed hosts --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index be8e4c4a..dcbb2eeb 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -32,7 +32,7 @@ export default defineConfig({ server: { port: 3001, strictPort: true, - allowedHosts: ["localhost", "127.0.0.1", "quantfortune.com", "app.quantfortune.com"], + allowedHosts: ["localhost", "127.0.0.1", "quantfortune.com", "www.quantfortune.com", "app.quantfortune.com", "www.app.quantfortune.com"], proxy: { "/api": { target: proxyTarget,