You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
269 B
7 lines
269 B
2 years ago
|
// __MICRO_APP_ENVIRONMENT__和__MICRO_APP_PUBLIC_PATH__是由micro-app注入的全局变量
|
||
|
if (window.__MICRO_APP_ENVIRONMENT__) {
|
||
|
// eslint-disable-next-line
|
||
|
__webpack_public_path__ = window.__MICRO_APP_PUBLIC_PATH__
|
||
|
} else {
|
||
|
__webpack_public_path__ = '/'
|
||
|
}
|