mirror of https://github.com/webpack/webpack.git
21 lines
389 B
JavaScript
21 lines
389 B
JavaScript
module.exports = {
|
|
// mode: "development || "production",
|
|
entry: {
|
|
pageA: "./pageA",
|
|
pageB: "./pageB"
|
|
},
|
|
optimization: {
|
|
splitChunks: {
|
|
cacheGroups: {
|
|
commons: {
|
|
name: "commons",
|
|
chunks: "initial",
|
|
minChunks: 2,
|
|
minSize: 0
|
|
}
|
|
}
|
|
},
|
|
occurrenceOrder: true // To keep filename consistent between different modes (for example building only)
|
|
}
|
|
};
|