umi ant-pro 其中一个页面无法触发热更新
尝试排除
1、组件名称是否错误
2、引用组件名是否小写
3、页面中其他语法错误
发现都不起作用
后发现路由中配置文件大小写错误
修改前:
{
name: ‘xxxx‘,
path: ‘/company/detail‘,
hideInMenu: true,
component: ‘./company/detail‘,
wrappers: [RouteWatcher],
}
修改后:
{
name: ‘xxxx‘,
path: ‘/company/detail‘,
hideInMenu: true,
component: ‘./Company/detail‘,
wrappers: [RouteWatcher],
}
component处引用地址大小些拼写错误 应该从首字母小写company改为首字母大写Company 和文件夹名称对应