umijs / plugins

🍣 The one-stop shop for official Umi plugins and presets.
349 stars 238 forks source link

master的option属性不支持excludeAssetFilter #872

Open pumpkin123 opened 2 years ago

pumpkin123 commented 2 years ago

.umi/plugin-qiankun/masterRuntimePlugin.ts的start接受master传入的option,但是如果属性为函数会丢失


const {
    // @ts-ignore 兼容之前版本的 jsSandbox 配置
    sandbox = masterOptions.jsSandbox ?? true,
    prefetch = true,
    // @ts-ignore compatible with old configuration
    defer = false,
    lifeCycles,
    masterHistoryType = defaultHistoryType,
    ...otherConfigs
  } = masterOptions;
  // ...省略
  start({ sandbox, prefetch, ...otherConfigs });```