webpack/test/configCases/async-commons-chunk/existing-name/webpack.config.js

15 lines
212 B
JavaScript
Raw Normal View History

var webpack = require("../../../../");
module.exports = {
performance: {
hints: false
},
optimization: {
splitChunks: {
minSize: 1,
name: true
}
},
2018-02-25 09:00:20 +08:00
plugins: [new webpack.NamedChunksPlugin()]
};