diff --git a/backend/src/main.ts b/backend/src/main.ts index e139c49..db8e898 100644 --- a/backend/src/main.ts +++ b/backend/src/main.ts @@ -1,5 +1,8 @@ import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; +const corsOptions = { + origin: 'https://blog.anatid.net', +}; async function bootstrap() { const app = await NestFactory.create(AppModule);