Home> Web Front-end> Vue.js> body text

Manual pure static file packaging and deployment preview link (deployed to GitHub), from the cli official file of vue, using yarn

大佬别动我昵称
Release: 2021-11-15 16:37:23
Original
102 people have browsed it

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

![Link after successful build](https://img.php.cn/ upload/image/421/242/536/1636642339926184.png "Link after successful build")

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:// .github.io

# git push -f git@github.com: / .github.io. git master

# Deploy to https:// .github.io/

# git push -f git@github.com: / .git master:gh-pages

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!

Related labels:
1
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!