Browse Source

Pull request #205608: REPORT-83708 同步release修改

Merge in DEC/fineui from ~SYLAR/fineui:final/11.0 to final/11.0

* commit '731acb79e035072c7fd93832e9723988eafa484e':
  REPORT-83708 同步release修改
master
Sylar-黄山 2 years ago
parent
commit
b78ee9f2a2
  1. 3
      plugins/webpack-fui-worker-plugin/worker-loader.js

3
plugins/webpack-fui-worker-plugin/worker-loader.js

@ -116,8 +116,9 @@ function loader() {
// 插入代码的转译和压缩由主构建配置的 babel/ts loader 处理, 不需要 worker-worker 来处理
// 添加 @ts-nocheck 避免 ts-check 报错
// 修复export const 下 const不会被转译的问题
// safari浏览器下blob需指定type
`// @ts-nocheck
export default window.URL.createObjectURL(new Blob([${JSON.stringify(compilation.assets[entry].source())}]));
export default window.URL.createObjectURL(new Blob([${JSON.stringify(compilation.assets[entry].source())}], { type: 'text/javascript' }));
`
)
: callback(

Loading…
Cancel
Save