You'll have to set NODE_ENV
to development to solve the issue.
set NODE_ENV=development
More conveniently configure your package.json
accordingly: "scripts": { "start": "set NODE_ENV=production && node app" }
This is for Windows.
You'll have to set NODE_ENV
to development to solve the issue.
set NODE_ENV=development
More conveniently configure your package.json
accordingly: "scripts": { "start": "set NODE_ENV=production && node app" }
This is for Windows.