使用react dva按需加载

Posted unreal-feather

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用react dva按需加载相关的知识,希望对你有一定的参考价值。

然后子路由组件会报错。

Add "publicPath": "/" to .webpackrc or .roadhogrc can fix this issue

export default function RouterConfig({ history,app }) {
    const LoginPage = (dynamic as any)({
        app,
        component:()=>import(‘./routes/LoginPage/LoginPage‘)
    })
    const HomePage = (dynamic as any)({
        app,
        component:()=>import(‘./routes/HomePage‘)
    })

 

以上是关于使用react dva按需加载的主要内容,如果未能解决你的问题,请参考以下文章