Hey! I’m trying to upload my react app. The app also has an express.js server.
I’m very new to full-stack and probably did something wrong in the process.
This is my scripts section in the package.json:
“scripts”: {
“start”: “react-scripts start”,
“build”: “react-scripts build”,
“test”: “react-scripts test”,
“eject”: “react-scripts eject”,
“dev”: “nodemon server”
}
I currently use npm start for react and npm run dev for the server.
In the deploy setting Build command I wrote: “npm run build && npm start”.
This is the log: Deploy details | omerinstagram (netlify.com)
I know that it may be an easy solution, I’m just really new at this and would love to understand what I did wrong