Setting up the test server port in JavaScript

By default, the server runs on port 3001. We can change the port in the settings in the config.js file:

export default { port: '3001', }

Go to the settings file and change the port to 3002.

enru