在GitHub Pages上部署Nuxt.js项目的问题



我有一个项目: 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) {
}
}
}```

我遇到了同样的问题,这是我为解决它所做的。

  1. 添加到nuxt.config.js
// Allows page refresh to work on github pages
generate: {
fallback: "404.html"
},
  1. 将一个空白文件.nojekyll添加到static/目录(防止 github 将其构建为 Jekyll 站点)

  2. 部署时,您需要执行gh-pages -d dist -t true(因为默认部署会忽略以"."开头的文件)

为什么有效

上述解决方案解决了几个问题。

  1. 添加fallback: "404.html",这允许SPA(单页应用程序)在Github页面上工作。

    1. 任何路由(如example.github.io/my-nuxt-app/some/page)都将重定向到自定义404.html文件,这将保持 SPA 加载。 更多信息在这里
  2. .nojekyll阻止 github 将其构建为 Jekyll 站点,但如果 gh-pages 站点具有/pages目录,则会自动认为 gh-pages 站点是 Jekyll 站点

  3. gh-pages -d dist -t true是必需的,以便将.nojekyll文件实际部署到 Github 页面,因为默认情况下,gh-pages命令会忽略以.开头的文件

相关内容

  • 没有找到相关文章

最新更新