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

19 lines
252 B
JavaScript

"use strict";
/** @type {import("../../../../").Configuration} */
module.exports = {
entry: {
main: "./index",
second: "./index"
},
target: "web",
output: {
filename: "[name].js"
},
optimization: {
splitChunks: {
minSize: 1
}
}
};