score:0

react-scripts build should do it. add a build field to the scripts section of your package.json file and then run npm run build. example:

{
  "repository": {
    ...
  },
  ...
  "dependencies": {
    ...
  }
  "scripts" : {
    ...
    "build" : "react-scripts build"
  }
}

Related Query

More Query from same tag