diff --git a/src/main.ts b/src/main.ts index 2adb1c6..baf032c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,10 +4,7 @@ import { AppModule } from './app.module' async function bootstrap() { const app = await NestFactory.create(AppModule) app.enableCors({ - origin: [ - 'https://task-manager-frontend-7egxgsovaq-ew.a.run.app/', - 'app.taskermanager.online' - ] + origin: 'https://app.taskermanager.online/' }) console.log(`--- app is listening oooon ${process.env.PORT}`) await app.listen(process.env.PORT ?? 3001)