our project is now over, we only have two weeks to give back the project for our final year\'s studies at University. Our teacher told us that now that development phase was ove
In 2019 this does work for me:
in node.js server:
app.use('/react', express.static(path.join(__dirname, '../client/build')));
in package.json react
http://localhost:server-port/client
and in browser just type
http://localhost:server-port/client .
You should see react homepage now. Hopefully helpful for somebody.