mirror of https://github.com/webpack/webpack.git
10 lines
107 B
JavaScript
10 lines
107 B
JavaScript
|
module.exports = {
|
||
|
entry: {
|
||
|
bundle0: "./a",
|
||
|
other: "./b"
|
||
|
},
|
||
|
output: {
|
||
|
filename: "[name].js"
|
||
|
}
|
||
|
};
|