Search code examples
reactjscreate-react-appproduction

Now that I've created my react application in the IDE, how do I get it to work from the command line outside of the IDE


"I have finished developing a react app and I used create-react-app to create the web application.what are the steps that I should take to make the app into production? I want to host this application in an Apache server.How can I bundle my app using webpack?


Solution

  • run the command npm run build and take the content in the build folder and deploy it on the server.