在进行qiankun搭建项目的是遇到
__webpack_public_path__ ...... is undefined
解决方案在package.json中修改
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"globals": {
"__webpack_public_path__": true
}
},