加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
config-overrides.js 574 Bytes
一键复制 编辑 原始数据 按行查看 历史
dvfcfbgv 提交于 2019-07-27 22:59 . chore: fixed production build bug
const path = require('path')
const {
removeModuleScopePlugin,
override,
babelInclude,
addWebpackAlias
} = require('customize-cra')
module.exports = override(
(() => config => {
config.module.rules.push({
test: /\.worker\.js$/,
use: { loader: 'worker-loader', options: { inline: true } }
})
config.output.globalObject = 'this'
return config
})(),
removeModuleScopePlugin(),
babelInclude([path.resolve(__dirname, 'src'), path.resolve(__dirname, 'core')]),
addWebpackAlias({
['core']: path.resolve(__dirname, 'core')
})
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化