Answers for "How to serve React JS static files with express JS?"

0

How to serve React JS static files with express JS?

const path = require("path");
app.use(express.static(path.join(__dirname,"nameOfYourReactApp","build")))

//Replace nameOfYourReactApp with the name of your app
Posted by: Guest on October-03-2021
0

How to serve React JS static files with express JS?

//on your react app run
npm run build
//The insert the following code on your server
const path = require("path");
app.use(express.static(path.join(__dirname,"nameOfYourReactApp","build")))

//Replace nameOfYourReactApp with the name of your app
Posted by: Guest on October-03-2021
0

How to serve React JS static files with express JS?

//on your react app run 
npm run build

//Then insert the following code on your server

const path = require("path");
app.use(express.static(path.join(__dirname,"nameOfYourReactApp","build")))
//Replace nameOfYourReactApp with the name of your app
Posted by: Guest on October-03-2021

Code answers related to "How to serve React JS static files with express JS?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language