Skip to content

Commit

Permalink
cicd test
Browse files Browse the repository at this point in the history
  • Loading branch information
wlstmd committed Jul 10, 2024
1 parent 67a1132 commit f705f87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.enableCors({
origin: '*',
methods: ['GET', 'POST', 'PUT', 'DELETE'],
methods: ['GET'],
allowedHeaders: 'Content-Type, Accept',
credentials: true,
});
Expand All @@ -33,7 +33,7 @@ async function bootstrap() {
module.hot.dispose(() => app.close());
}

console.log(`Listening on port ${port}`);
console.log(`Listening on port ${port}!`);
} catch (error) {
console.error('Error during bootstrap:', error);
}
Expand Down

0 comments on commit f705f87

Please sign in to comment.