我有一个项目: https://github.com/merrymaker14/vuegl
我决定上传到 GitHub 页面: https://merrymaker14.github.io/vuegl
但是他不会正常浏览页面,尽管他似乎已经设置好了所有内容。为什么? 我根据官方文档做了所有事情。
nuxt.config.js:
/* nuxt.config.js */
// only add `router.base = '/<repository-name>/'` if `DEPLOY_ENV` is `GH_PAGES`
const routerBase = process.env.DEPLOY_ENV === 'GH_PAGES' ? {
router: {
base: '/vuegl/'
}
} : {}
export default {
mode: 'universal',
/*
** Headers of the page
*/
head: {
title: pkg.name,
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ hid: 'description', name: 'description', content: pkg.description }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
]
},
/*
** Customize the progress-bar color
*/
loading: { color: '#fff' },
...routerBase,
router: {
middleware: 'pages',
//base: '/examples/vuegl/'
},
/*
** Global CSS
*/
css: [
],
/*
** Plugins to load before mounting the App
*/
plugins: [
],
/*
** Nuxt.js modules
*/
modules: [
],
/*
** Build configuration
*/
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) {
}
}
}```
我遇到了同样的问题,这是我为解决它所做的。
- 添加到
nuxt.config.js
:
// Allows page refresh to work on github pages
generate: {
fallback: "404.html"
},
将一个空白文件
.nojekyll
添加到static/
目录(防止 github 将其构建为 Jekyll 站点)部署时,您需要执行
gh-pages -d dist -t true
(因为默认部署会忽略以"."开头的文件)
为什么有效
上述解决方案解决了几个问题。
添加
fallback: "404.html"
,这允许SPA(单页应用程序)在Github页面上工作。- 任何路由(如
example.github.io/my-nuxt-app/some/page
)都将重定向到自定义404.html
文件,这将保持 SPA 加载。 更多信息在这里
- 任何路由(如
。.nojekyll
阻止 github 将其构建为 Jekyll 站点,但如果 gh-pages 站点具有/pages
目录,则会自动认为 gh-pages 站点是 Jekyll 站点gh-pages -d dist -t true
是必需的,以便将.nojekyll
文件实际部署到 Github 页面,因为默认情况下,gh-pages
命令会忽略以.
开头的文件