December 2019
Intermediate to advanced
474 pages
10h 3m
English
With the configuration of our PWA in place, it's time to see how this will affect the application. If you still have your Create React App running (if not, execute the npm start command again), visit the project at http://localhost:3000/. We will see that nothing has changed yet. As we mentioned previously, the PWA will only be visible when the build version of our application is open. To do this, execute the following command in the projects' root directory:
npm run build
This will initiate the build process, which minifies our application to a bundle that's stored inside the build directory. This built version of our application can be served from our local machine. If we look at the output of the build process on the ...