From 3554f2e9013e9b97584241a6c0f75374376bf0bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Pruneau?= Date: Mon, 5 Jan 2026 09:07:47 -0500 Subject: [PATCH] added app.targo.ca and staging.app.targo.ca to the allowed frontend URLs --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index c847ba5..93c1bc2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -53,7 +53,7 @@ async function bootstrap() { // Enable CORS app.enableCors({ - origin: ['http://10.100.251.2:9011', 'http://10.100.251.2:9012', 'http://10.100.251.2:9013', 'http://localhost:9000'], + origin: ['http://10.100.251.2:9011', 'http://10.100.251.2:9012', 'http://10.100.251.2:9013', 'http://localhost:9000', 'https://app.targo.ca/', 'https://staging.app.targo.ca/'], credentials: true, });