webpack/test/configCases/split-chunks-common/correct-order/webpack.config.js

17 lines
202 B
JavaScript

module.exports = {
entry: {
vendor: ["./a"],
main: "./index"
},
target: "web",
output: {
filename: "[name].js"
},
optimization: {
splitChunks: {
minSize: 1,
name: "vendor"
}
}
};