Github 页数 Vue.js 项目

Github Pages Vue.js Project

我正在尝试将 vuejs 应用程序部署到 github 页面。我关注了每个 Whosebug post,以及我在网上找到的每个教程。无论我做什么,页面都只显示自述文件。

github repo github page

我正在使用 gh-pages 分支。

package.json:

type here{
  "name": "eller-front-end-resume",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
    "lint": "vue-cli-service lint",
    "build": "vue-cli-service build",
    "predeploy": "yarn build",
    "deploy": "node scripts/gh-pages-deploy.js"
  },
  "dependencies": {
    "@vue/composition-api": "1.4.6",
    "axios": "0.26.0",
    "core-js": "^3.6.5",
    "execa": "latest",
    "lodash": "4.17.21",
    "vue": "^2.6.11",
    "vue-router": "^3.2.0",
    "vuetify": "^2.6.4",
    "vuex": "^3.4.0"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.180",
    "@typescript-eslint/eslint-plugin": "^4.18.0",
    "@typescript-eslint/parser": "^4.18.0",
    "@vue/cli-plugin-babel": "~4.5.7",
    "@vue/cli-plugin-eslint": "~4.5.7",
    "@vue/cli-plugin-router": "~4.5.7",
    "@vue/cli-plugin-typescript": "~4.5.7",
    "@vue/cli-plugin-vuex": "~4.5.7",
    "@vue/cli-service": "~4.5.7",
    "@vue/eslint-config-prettier": "^6.0.0",
    "@vue/eslint-config-typescript": "^7.0.0",
    "eslint": "^6.7.2",
    "eslint-plugin-prettier": "^3.3.1",
    "eslint-plugin-vue": "^6.2.2",
    "prettier": "^2.2.1",
    "sass": "~1.32.0",
    "sass-loader": "^10.0.0",
    "typescript": "~4.1.5",
    "vue-cli-plugin-vuetify": "~2.4.7",
    "vue-template-compiler": "^2.6.11",
    "vuetify-loader": "^1.7.0"
  }
}

我花了太多时间研究和尝试托管一个 dumb/simple 应用程序来给我奶奶看。请帮助我。

我在 Whosebug 和其他网站上遵循了十几个指南(是的,甚至是每个人都指向的那篇中篇文章)。我希望看到我的应用程序 运行 就好像我是 运行 我的本地项目在我的机器上一样。

您似乎没有在 GitHub Pages 提供的文件夹中通过 vue 构建的文件。转到 GitHub 中的存储库设置并选择“页面”。在那里你可以切换分支和分支中应该服务的文件夹。目前只允许使用“/”(root)或“/docs”。见 GitHub Pages Docs on this

对于您的用例,在构建页面/更改编译器中的输出文件夹后将其更改为“/docs”并将“dist”文件夹重命名为“docs”应该可以解决问题。 请注意,更改后需要几分钟时间才能提供新的 index.html 而不是当前的自述文件。