webpack/test/statsCases/async-commons-chunk/webpack.config.js

20 lines
288 B
JavaScript
Raw Normal View History

var webpack = require("../../../");
module.exports = {
entry: "./",
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: "main",
async: true
})
],
stats: {
hash: false,
timings: false,
assets: false,
chunks: true,
chunkOrigins: true,
modules: false
}
};