const HappyPack = require('happypack');
const os = require('os')
const happyThreadPool = HappyPack.ThreadPool({ size: os.cpus().length });
module: {
rules: [
{
test: /\.js$/,
loader: 'happypack/loader?id=babel', // 原始loader替换成`happypack/loader`
exclude: /^node_modules$/, // 排除不处理的目录
include: [
resolve('src'),
resolve('node_modules/webpack-dev-server/client')
]
}
]
},
plugins: [
new HappyPack({
// id标识 需要处理的loader
id: 'babel',
loaders: [
{
loader: 'babel-loader',
options: {
presets: ['es2015'],
cacheDirectory: true
}
}
],
threadPool: happyThreadPool
})
]
各位大牛们知道是什么原因吗?
以解决了,这个不关引入HappyPack的事,主要之前引入这个插件babel-plugin-equire,后面没有到卸载了,刚好使用HappyPack的时候把之前使用babel-plugin-equire的一些注释方法给打开,然后运行就报错。