This time I will bring you a detailed explanation of the CDN optimization first-screen loading method. What are the precautions for CDN optimization first-screen loading? The following is a practical case, let’s take a look.
Preface
As a website application, loading speed is very important. Loading speed, one is the reasonable arrangement of the program, such as on-demand loading of components, and the other is the asynchronous loading of js, css and other resources.
In the Vue project, all js and css files introduced into the project will be packaged into vendor.js during compilation. The browser can only start to display the first screen after loading the file. If many libraries are introduced, the size of the vendor.js file will be quite large, affecting the initial opening experience.
The solution is to separate the external js and css files referenced and not compile them into vendor.js. Instead, they are referenced in the form of resources, so that the browser can use multiple A thread asynchronously loads vendor.js, external js, etc. to speed up the initial opening.
External library files can use CDN resources or other server resources.
Below, take the introduction of vue, vuex, and vue-router as an example to explain the processing flow.
1. Resource introduction
In index.html, add CDN resources, such as bootstrap:
<body> <p id="app"></p> <script src="https://cdn.bootcss.com/vue/2.5.2/vue.min.js"></script> <script src="https://cdn.bootcss.com/vue-router/3.0.1/vue-router.min.js"></script> <script src="https://cdn.bootcss.com/vuex/3.0.1/vuex.min.js"></script> </body>
2. Add configuration
In the bulid/webpack.base.conf.js file, add externals and import the referenced external modules, as follows :
module.exports = { entry: { app: './src/main.js' }, externals:{ 'vue': 'Vue', 'vue-router': 'VueRouter', 'vuex':'Vuex' }
Note:
The format is 'aaa' : 'bbb', where aaa represents the name of the resource to be imported, bbb indicates the name provided by the module to external references, which is customized by the corresponding library. For example, vue is Vue and vue-router is VueRouter.
3. Remove the original reference
Remove the import, such as:
// import Vue from 'vue' // import Router from 'vue-router'
Remove Vue.use(XXX), such as:
// Vue.use(Router)
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
What are the ways for vue-cli to shorten the first screen loading time
vue reduces the number of requests to the server
The above is the detailed content of Detailed explanation of CDN optimization first screen loading method. For more information, please follow other related articles on the PHP Chinese website!