Skip to content

Commit

Permalink
feat: Allow CORS all
Browse files Browse the repository at this point in the history
  • Loading branch information
Yongbeom-Kim committed Nov 11, 2024
1 parent 90a81a7 commit e340799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peerprep/backend/collab-service/src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ wss.on('connection', (conn, req) => {

const io = new Server(server, {
cors: {
origin: "*",
origin: true,
methods: ["GET", "POST"],
},
});
Expand Down

0 comments on commit e340799

Please sign in to comment.