added app.targo.ca and staging.app.targo.ca to the allowed frontend URLs

This commit is contained in:
Frédérick Pruneau 2026-01-05 09:07:47 -05:00
parent 17f06e7867
commit 3554f2e901

View File

@ -53,7 +53,7 @@ async function bootstrap() {
// Enable CORS // Enable CORS
app.enableCors({ 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, credentials: true,
}); });