November 2019
Beginner
436 pages
8h 52m
English
Many CLI tools for web frameworks have the concept of production and development builds. The Vue CLI provides you with a script that produces highly optimized and minimized artifacts for distribution. Just run the build command, as shown in the following code:
npm run build
You can find the final bits you'll need in the dist folder. The dist folder contains everything you need in order to distribute or serve your web application:

Let's move on and learn how to set up conditional loading so that our desktop application uses a web server for ...
Read now
Unlock full access