Skip to content

Commit

Permalink
fix(sockets): changing origin to be all for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rallieon committed Jul 1, 2021
1 parent 2b3e279 commit b2cd6e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/haste-game-server/src/server/socketServer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class SocketServer {
constructor(server: http.Server) {
this.io = new Server(server, {
cors: {
origin: process.env.CORS_URL,
origin: '*',
methods: ['GET', 'POST'],
credentials: true,
},
Expand Down

0 comments on commit b2cd6e3

Please sign in to comment.