Browse Source

REPORT-83708 同步release修改

master
Sylar 2 years ago
parent
commit
731acb79e0
  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