vue3-dashboard 微应用 实践微前端
How to deploy React App to GitHub Pages
设置两个地方
- 把仓库名字作为基础路径
const isProd = process.env.NODE_ENV === 'production'
const history = isMemoryHistory
? createMemoryHistory(basePath)
: createWebHistory(isProd ? '/vue3-dashboard' : undefined) // 生产环境才设置基础路径- 设置自定义错误页面
添加一个 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?
尝试了 vue 类似的解决办法,没成功,要是你有个更好的办法,感谢告诉我。