Browse Source

Merge pull request #3202 in VISUAL/fineui from DEC/fineui:release/11.0 to master

* commit 'f05258b32c71deeb08e39e13f8ae7415ccbd9e35':
  REPORT-83708 fix: 创建Blob时指定类型
  REPORT-83708 fix: 创建Blob时指定类型
es6
Aeolus.Zhang-张敬峥 2 years ago
parent
commit
8f8e0b14cb
  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