vue项目部署到github的静态服务

本地写好vue项目以后。

  • 提交到远程仓库。
git add .
git commit -m 'dev'
git remote add origin https://github.com/xxx/xxx.git
git push origin master -f
1
2
3
4
  • 将docs下的所有文件夹推送到远程分支gh-pages
//打包
npm run build

//进入docs文件夹
cd ./docs

//提交到远程
git init
git add -A
git remote add origin https://github.com/xxx/xxx.git
git commit -m 'deploy'
git push -f git@github.com:xxx/xxx.git master:gh-pages
1
2
3
4
5
6
7
8
9
10
11
12

这样就部署到github了,就可以在线访问了,访问地址:https://xxx.github.io/xxx/xxx

分享至:

  • qq
  • qq空间
  • 微博
  • 豆瓣
  • 贴吧