vue-cli로 만든 앱을 Github Pages에 배포
2085 단어 Vue.jsvue-cliGitHubgithub-pages
1. 평소와 같이 vue 프로젝트 만들기
$ vue init webpack <projectname>
2. config/index.js에서 build 메소드 편집
build: {
// Template for index.html
- index: path.resolve(__dirname, '../dist/index.html'),
+ index: path.resolve(__dirname, '../docs/index.html'),
// Paths
- assetsRoot: path.resolve(__dirname, '../dist'),
+ assetsRoot: path.resolve(__dirname, '../docs'),
assetsSubDirectory: 'static',
- assetsPublicPath: '/',
+ assetsPublicPath: './',
3. 빌드하기
$ mkdir docs
$ npm run build
4. 보통 Github에 배포
$ git add -A
$ git commit -m "<commit-message>"
$ git push origin master
5. Github 측에서 배포 설정
설정 탭에는 Github Pages 항목이 있습니다.
Source를
master branch /docs folder
로 한다.6. 확인
https://
あなたのGithub垢
.github.io/レポジトリの名前
/를 체크.예를 들면, 이런 URL: htps : // msrks. 기주 b. 이오/보아 rd가 메마나게 r/
Reference
이 문제에 관하여(vue-cli로 만든 앱을 Github Pages에 배포), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/msrks/items/67dbfba84bc635d7337c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)