Configuration
> Published on Wed, Jul 24, 2024> Updated on Wed, Jul 24, 2024
The server can be configured by editing the config.js
file in which you can set the ports for both the server and the websocket.
const config = {
ports: {
http: 7776,
ws: 7777,
},
};
export default config;
Adapt the port number in the examples below if you changed it in the config file.