Skip to content

Commit

Permalink
fix: try ngrok url instead of vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarchevskyi committed Dec 15, 2024
1 parent a76b5e4 commit 0489623
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/game-views/MultiplayerView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ type SocketResponse = {
gameOver: boolean
}
const socket = io('https://tic-tac-toe-node.vercel.app')
const socket = io('https://musical-sincere-mako.ngrok-free.app', {
extraHeaders: {
"ngrok-skip-browser-warning": "69420",
}
})
const personalRoomCode = ref<string>('')
const inputRoomCode = ref<string>('')
Expand Down

0 comments on commit 0489623

Please sign in to comment.