Fix some translations and error messages
[vchess.git] / client / src / parameters.js.dist
... / ...
CommitLineData
1const Parameters =
2{
3 // URL of your socket server
4 socketUrl: "ws://localhost:3000",
5
6 // URL of the server (leave blank for 1-server case)
7 serverUrl: "http://localhost:3000",
8
9 // true if the server is at a different address
10 cors: true,
11
12 // "include" if the server is at a different address
13 credentials: "same-origin"
14};
15
16export default Parameters;