viewstools / yarn-workspaces-cra-crna

How to use yarn workspaces with Create React App and Create React Native App (Expo) to share common code across
151 stars 23 forks source link

How do I run my express server with react-app-rewired start? #24

Open tychovbh opened 6 years ago

tychovbh commented 6 years ago

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?