webpack/test/configCases/split-chunks-common/extract-async-from-entry/webpack.config.js

16 lines
185 B
JavaScript

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