


After writing the project, you need to deploy and publish it. This project built using vue@cli only has front-end static files, calls the back-end interface, and can use this step if it is deployed to GitHub.
Points to note: 1. Your gitbash is installed and configured.
2. Every time you modify the code, you need to push it to the production environment.
3. This is a manual update step, but it can also be updated automatically. Additional configuration is required.
There will be two environments, so two warehouses need to be built, one is the environment where the code is placed, and the other is the production environment and the code environment. Code changes require bulid, which will generate a new production line break, and then push to the warehouse where the production environment is stored,
1, command line
``` yarn build
```
2.
Click the link and switch the language to Chinese

Use something to monitor the generated dist directory
~~~
yarn global add serve
serve -s dist
//These two lines ensure that the dist directory is packaged
~~~
After installation, the web page port will become more than 5000, and the packaged file will be compressed.
3. Set the correct value in vue.config.js publicPath.
~~~
module.exports = {
publicPath: process.env.NODE_ENV === 'production'
? '/my- project/' //The name of the production environment
: '/' //
}
~~~
4. Build deploy in the project .sh file
~~~
#!/usr/bin/env sh
# Abort the script when an error occurs
set -e
# Build
npm run build
# cd to the directory of the build output
cd dist
# Deploy to the custom domain name
# echo 'www.example.com' > CNAME
git init
git add -A
git commit -m 'deploy'
# Deploy to https://
# git push -f git@github.com:
# Deploy to https://
# git push -f git@github.com:
cd -
~~~
Then execute deploy.sh
~~~
//You need to configure the environment gitbash, cmder
sh deploy.sh
//Will run the command in the file
~~~
The above is the detailed content of Manual pure static file packaging and deployment preview link (deployed to GitHub), from the cli official file of vue, using yarn. For more information, please follow other related articles on the PHP Chinese website!

This article explains Vuex, a state management library for Vue.js. It details core concepts (state, getters, mutations, actions) and demonstrates usage, emphasizing its benefits for larger projects over simpler alternatives. Debugging and structuri

Article discusses creating and using custom Vue.js plugins, including development, integration, and maintenance best practices.

Vue.js enhances web development with its Component-Based Architecture, Virtual DOM for performance, and Reactive Data Binding for real-time UI updates.

This article explores advanced Vue Router techniques. It covers dynamic routing (using parameters), nested routes for hierarchical navigation, and route guards for controlling access and data fetching. Best practices for managing complex route conf

The article explains how to configure Vue CLI for different build targets, switch environments, optimize production builds, and ensure source maps in development for debugging.

The article discusses using Vue with Docker for deployment, focusing on setup, optimization, management, and performance monitoring of Vue applications in containers.

The article discusses using tree shaking in Vue.js to remove unused code, detailing setup with ES6 modules, Webpack configuration, and best practices for effective implementation.Character count: 159

The article discusses various ways to contribute to the Vue.js community, including improving documentation, answering questions, coding, creating content, organizing events, and financial support. It also covers getting involved in open-source proje


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download
The most popular open source editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version
Visual web development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment
