yarn start different port code example
Example 1: react set port
"start": "set PORT=3006 && react-scripts start"
Example 2: yarn start port
Create a .env file in your project folder
add the line "PORT=3006" inside the file and save
"start": "set PORT=3006 && react-scripts start"
Create a .env file in your project folder
add the line "PORT=3006" inside the file and save