My application makes uses of server-side rendering and a express server.js file. Normally I would edit my package.js: "start": "node server.js"
But since "start": "react-app-rewired start" is already used, how do I get this to run node server.js instead of the normal react-scripts start which I guess it runs after overriding the configuration?
My application makes uses of server-side rendering and a express server.js file. Normally I would edit my package.js:
"start": "node server.js"
But since
"start": "react-app-rewired start"
is already used, how do I get this to runnode server.js
instead of the normalreact-scripts start
which I guess it runs after overriding the configuration?