其他分享
首页 > 其他分享> > vue部署到线上,安卓出现Loading chunk {n} failed

vue部署到线上,安卓出现Loading chunk {n} failed

作者:互联网

在这里插入图片描述
如图,部署到线上,安卓出现这个错误,iso没问题,找了好多方法,这个比较靠谱,这个写的比较详细
添加链接描述

在配置路由页面(src/router/index.js)写上这堆代码,最终解决问题
router.onError(error => {
  const pattern = /Loading chunk (\d)+ failed/g;
  const isChunkLoadFailed = error.message.match(pattern);
  const targetPath = router.history.pending.fullPath;
  if (isChunkLoadFailed) {
   router.replace(targetPath);
  }  
})

标签:Loading,const,isChunkLoadFailed,安卓,到线,vue,pattern,router
来源: https://blog.csdn.net/qq_28500939/article/details/100514617