webpack/test/statsCases/named-chunks-plugin/webpack.config.js

24 lines
358 B
JavaScript
Raw Permalink Normal View History

"use strict";
/** @type {import("../../../").Configuration} */
2017-03-26 15:41:52 +08:00
module.exports = {
mode: "production",
2017-03-26 15:41:52 +08:00
entry: {
2018-02-25 09:00:20 +08:00
entry: "./entry"
},
optimization: {
moduleIds: "named",
chunkIds: "named",
splitChunks: {
cacheGroups: {
vendor: {
name: "vendor",
test: /modules[\\/][ab]/,
chunks: "all",
enforce: true
}
}
}
}
2017-03-26 15:41:52 +08:00
};