|
|
|
@ -117,16 +117,13 @@ function loader() {
|
|
|
|
|
// 添加 @ts-nocheck 避免 ts-check 报错
|
|
|
|
|
// 修复export const 下 const不会被转译的问题
|
|
|
|
|
`// @ts-nocheck
|
|
|
|
|
const blob = new Blob([${JSON.stringify(compilation.assets[entry].source())}]); |
|
|
|
|
const workerUrl = window.URL.createObjectURL(blob); |
|
|
|
|
export default workerUrl; |
|
|
|
|
export default window.URL.createObjectURL(new Blob([${JSON.stringify(compilation.assets[entry].source())}])); |
|
|
|
|
` |
|
|
|
|
) |
|
|
|
|
: callback( |
|
|
|
|
null, |
|
|
|
|
`// @ts-nocheck
|
|
|
|
|
const servicePath = __webpack_public_path__ + ${JSON.stringify(entry)}; |
|
|
|
|
export default servicePath; |
|
|
|
|
export default __webpack_public_path__ + ${JSON.stringify(entry)}; |
|
|
|
|
` |
|
|
|
|
) |
|
|
|
|
}); |
|
|
|
|