This repository was archived by the owner on Dec 5, 2019. It is now read-only.
Production build hangs at 92% #272
Closed
Description
Hello,
I think this is probably a bug with this plugin since the dev build works fine and when I run webpack --progress
it gets stuck in:
92% chunk asset optimization UglifyJSPlugin
Below, the relevant parts of my webpack.config:
....
module.exports = {
mode,
node: { fs: 'empty' },
entry: {
...entries
},
output: {
filename: '[name].js',
path: path.join(__dirname, '/public/assets/')
},
module: {
rules: [
{
test: /\.js?$/,
exclude: /(node_modules)/,
use: 'babel-loader'
},
{
test: /\.(scss|css)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader'
},
{
loader: 'sass-loader',
options: {
sourceMap: true
}
}
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].css'
})
],
resolve: {
alias: {
core: path.join(__dirname, 'js/core')
}
},
optimization: {
splitChunks: {
minSize: 100000,
chunks: 'initial',
maxAsyncRequests: Infinity,
maxInitialRequests: Infinity,
name: true,
cacheGroups: {
styles: {
name: 'core',
test: /\.(scss|css)$/,
chunks: 'all',
enforce: true
},
vendor: {
name: 'vendor',
test: function (module) {
return /\/node_modules\//.test(module.context)
}
},
'core': {
name: 'core',
test: function (module) {
return /live-core\//.test(module.context)
}
}
}
}
}
}
Is this enough info? I tried to run with --debug --progress --display-error-details --verbose
but nothing else came out