DEV Community

Discussion on: Step by step React configuration from setup to deployment

Collapse
 
servatj profile image
Josep • Edited

Great post Nathan, after creating .babelrc you mention that we can run our react app, by running npm run start, but we need to create first the dist folder by building it with

  "scripts": {
    "build-dev": "webpack -d --mode development",

Am I right?

I hope this will helps other people that got stuck at this point like me. I appreciate a lot your work and don't hesitate to let me know if I'm missing something.