webpack/test/statsCases/chunk-module-id-range/webpack.config.js

29 lines
467 B
JavaScript

const webpack = require("../../../");
module.exports = {
mode: "none",
entry: {
main1: "./main1",
main2: "./main2"
},
plugins: [
new webpack.ids.ChunkModuleIdRangePlugin({
name: "main1",
start: 100,
end: 102
}),
new webpack.ids.ChunkModuleIdRangePlugin({
name: "main2",
order: "postOrderIndex"
})
],
stats: {
chunks: true,
chunkModules: true,
chunkOrigins: true,
entrypoints: true,
modules: false,
publicPath: true
}
};