Detailed explanation of Vue project packaging

Detailed explanation of Vue project packaging

1. Related configuration

Case 1 (the tool used is vue-cil)

If the project is created with vue-cli, there is no config folder in the project directory, so we need to create a configuration file ourselves; create a file vue.config.js in the root directory src. Note that the file name must be vue.config.js, and then insert the following code in the file:

 //Packaging configuration file module.exports = {
  assetsDir: 'static',
  parallel: false,
  publicPath: './',
};

The structure is as follows:

Case 2 (the tool used is webpack)

If you are using webpack, modify the webpack configuration directly in the index.js file in config:

 assetsPublicPath: './'

The structure is as follows:

2. Packaging

After the configuration is completed, call up the console and enter the packaging command npm run build to start packaging;

After success, there will be the following prompt;

And the dist folder will be automatically generated in the project directory;

The dist folder is the package we need, and then it can be put on the server for deployment. It should be noted that after packaging, no matter what changes are made in the project, npm run build is required to repackage.

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of different packaging commands for different vue environments
  • Detailed explanation of vue project packaging steps
  • How to use vue-cli to create a project and package it with webpack
  • Configure your own startup command and packaging command method in the Vue project

<<:  Solution to the failure of 6ull to load the Linux driver module

>>:  Detailed explanation of scroll bar scrolling control of DOM elements in HTML

Recommend

Form submission page refresh does not jump

1. Design source code Copy code The code is as fol...

Server stress testing concepts and methods (TPS/concurrency)

Table of contents 1 Indicators in stress testing ...

Vue implements simple production of counter

This article example shares the simple implementa...

HTML drag and drop function implementation code

Based on Vue The core idea of ​​this function is ...

Docker Compose one-click ELK deployment method implementation

Install Filebeat has completely replaced Logstash...

Implementation of IP address configuration in Centos7.5

1. Before configuring the IP address, first use i...

Sample code for html list box, text field, and file field

Drop-down box, text field, file field The upper p...

A detailed introduction to the CSS naming specification BEM from QQtabBar

BEM from QQtabBar First of all, what does BEM mea...

Problems and solutions for installing Docker on Alibaba Cloud

question When installing Docker using Alibaba Clo...

Vue3 AST parser-source code analysis

Table of contents 1. Generate AST abstract syntax...

Sample code for displaying a scroll bar after the HTML page is zoomed out

Here is a record of how to make a scroll bar appe...

Detailed explanation of several ways to create a top-left triangle in CSS

Today we will introduce several ways to use CSS t...