mirror of https://github.com/webpack/webpack.git
16 lines
185 B
JavaScript
16 lines
185 B
JavaScript
|
module.exports = {
|
||
|
entry: {
|
||
|
main: "./index",
|
||
|
second: "./index"
|
||
|
},
|
||
|
target: "web",
|
||
|
output: {
|
||
|
filename: "[name].js"
|
||
|
},
|
||
|
optimization: {
|
||
|
splitChunks: {
|
||
|
minSize: 1
|
||
|
}
|
||
|
}
|
||
|
};
|