Skip to content

jackchoumine/vue3-dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue3-dashboard

vue3-dashboard 微应用 实践微前端

如何部署到 gh-pages?

How to deploy React App to GitHub Pages

如何解决切换路由后刷新浏览器 404 ?

设置两个地方

  1. 把仓库名字作为基础路径
const isProd = process.env.NODE_ENV === 'production'
const history = isMemoryHistory
  ? createMemoryHistory(basePath)
  : createWebHistory(isProd ? '/vue3-dashboard' : undefined) // 生产环境才设置基础路径
  1. 设置自定义错误页面

添加一个 404.html,内容和 index.html一样当找不到路径时,会渲染 404.html.

每次复制文件也麻烦,我是每次执行部署,脚本执行成功后复制 index.html 为 404.html

 "build": "webpack --config config/webpack.prod.js --progress",
 "postbuild": "cp dist/index.html dist/404.html",
 "predeploy": "npm run build",
 "deploy": "gh-pages -d dist"

其他解决办法:

使用 hash 模式,然后根据这个设置一下 部署 vue 到 GitHub Pages:404 頁面

我没试过,不知道能否成功。

我还试了单页应用在 gh-pages 动态路由刷新后 404 解决方案,没成功。

更多方法,参考 How to fix HTTP 404 on Github Pages?

react 项目如何解决 404 问题?

尝试了 vue 类似的解决办法,没成功,要是你有个更好的办法,感谢告诉我。

About

vue3-dashboard 微应用 实践微前端

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published