bug记录

现场环境 切换路由失败,报Error: Loading css chunk xxx failed.

  • 分析
    1、本地开发 测试环境都一切完好,浏览器版本也一致。本地无法复现
    2、路由采用懒加载,切换时加载资源报错
  • 解决
    1、怀疑是打包时候分包问题
    2、那就不采用路由懒加载,将错误路由采用同步加载
{
    path: '/report',
    component: Layout,
    children: [
        {
            path: '',
            name: 'REPORT',
            // component: () => import('@/views/project-report'), // 懒加载
            component: ProjectReport,
            meta: { title: '项目报告', icon: 'report', permission: [PrivilegeMap['route_report']] }
        }
    ]
},
posted @ 2023-02-15 15:38  卑面派对  阅读(44)  评论(0编辑  收藏  举报