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