mirror of https://github.com/webpack/webpack.git
13 lines
165 B
JavaScript
13 lines
165 B
JavaScript
|
module.exports = {
|
||
|
entry: {
|
||
|
entry1: "./entry1",
|
||
|
entry2: "./entry2"
|
||
|
},
|
||
|
output: {
|
||
|
filename: "[name].js"
|
||
|
},
|
||
|
optimization: {
|
||
|
concatenateModules: true
|
||
|
}
|
||
|
};
|