An example of how to optimize a project after the Vue project is completed

An example of how to optimize a project after the Vue project is completed

1. Specify different packaging entry points for development mode and release mode

The project created by vue ui hides the webpack configuration. You can create a vue.config.js configuration file in the src root directory. Export the configuration object in the configuration file.

insert image description here

insert image description here

2. By default, the development mode and release mode of the Vue project share a packaged entry file (src/main.js). You can use configureWebpack or chainWebpack to define the webpack packaging configuration

insert image description here

Change the main.js file to main-dev.js. Copy main.js and change it to main-prod.js

2. Load external CDN resources through externals

By default, third-party dependency packages imported through the import syntax will eventually be packaged and merged into the same file, which will lead to the problem of a single file being too large after successful packaging (the CSS style sheet we imported will also be packaged into the same file, resulting in a file that is too large).

insert image description here

To solve the above problems, you can configure and load external CDN resources through the externals node of webpack. Any third-party dependency packages declared in externals will not be packaged and merged into the final file.

① Configure the externals node of webpack and configure it in the release stage

insert image description here

Third-party dependency packages declared in externals will not be packaged. The project will search for the corresponding objects in the window global when using the dependency packages. Therefore, you need to introduce js and css resources from CDN in the index.html file so that they can be found globally

You need to add the following CDN resource reference to the header of the public/index.html file:

Specific operation process:
① In main-prod.js, comment out the css files referenced by nprogress and quill ② In the head area of ​​index.html, load the js and css styles of nprogress and quill through CDN ③ In the head area of ​​index.html, load the remaining dependent js through CDN

insert image description here

insert image description here

insert image description here

You can find the corresponding open source library through staticfile CDN

insert image description here

File size before using CDN:

insert image description here

File size after using CDN:

insert image description here

3. Optimize ElementUI packaging through CDN

Although we enabled on-demand loading of element-ui components during the development phase to reduce the package size as much as possible, those components loaded on demand still occupy a large file size. At this point, we can also load the components in element-ui through CDN, which can further reduce the size of the packaged file.

The specific operation process is as follows:
① In main-prod.js, comment out the code for element-ui to be loaded on demand ② In the head area of ​​index.html, load element-ui's js and css styles through CDN

insert image description here

insert image description here

Finished file size:

insert image description here

4. Home page content customization

① The content of the homepage may be different in different packaging environments. We can customize it through plug-ins. The plug-in configuration is as follows:

 // Through plugin('html'): find the html plugin. Through tap(): you can modify the fixed configuration items in this plug-in // Through args: you can get some relevant parameters of the current plug-in.
  // Add a custom attribute isprod in args[0]. When in the development phase, it is assigned to true, and when in the release phase, it is assigned to false

insert image description here

② In the public/index.html homepage, you can decide how to render the page structure based on the value of isProd

insert image description here

insert image description here

5. Use lazy loading of routes

When packaging and building a project, all components corresponding to the routes are packaged into one file, which makes the file too large and affects page loading. It would be more efficient if we could split the components corresponding to different routes into different code blocks, and then load the corresponding components when the route is accessed.

insert image description here

This concludes this article about how to optimize a Vue project after it is completed. For more Vue project optimization content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Vue project optimization and packaging
  • Essential bonus items for optimizing and packaging the front end of Vue projects
  • Some practical strategies for Vue project optimization
  • Vue project optimization method through keep-alive data caching
  • A brief discussion on on-demand loading of pages for Vue project optimization (vue+webpack)
  • Detailed explanation of Vue project optimization on-demand component loading - using webpack require.ensure

<<:  Introduction to the three essential logs for MySQL database interviews

>>:  Example of how to implement a 2-column layout in HTML (fixed width on the left, adaptive width on the right)

Recommend

View MySQL installation information under Linux server

View the installation information of mysql: #ps -...

Detailed explanation of Shell script control docker container startup order

1. Problems encountered In the process of distrib...

Analysis of MySQL's planned tasks and event scheduling examples

This article uses examples to describe MySQL'...

How to expand the disk space of Linux server

Table of contents Preface step Preface Today I fo...

How to use Docker Compose to implement nginx load balancing

Implement Nginx load balancing based on Docker ne...

JS implements a stopwatch timer

This article example shares the specific code of ...

Use of SerialPort module in Node.js

Table of contents Purpose Module Installation Bas...

Detailed analysis and usage of tcpdump command under Linux

Introduction To put it simply, tcpdump is a packe...

Summary of javascript date tools

let Utils = { /** * Is it the year of death? * @r...

Analyze how uniapp dynamically obtains the interface domain name

background The interface domain name is not hard-...

How to write a MySQL backup script

Preface: The importance of database backup is sel...

Native js implements custom scroll bar component

This article example shares the specific code of ...

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

CSS: visited pseudo-class selector secret memories

Yesterday I wanted to use a:visited to change the...

Solution to Linux not supporting all commands

What should I do if Linux does not support all co...