2017-10-13 01:12:48 +08:00
|
|
|
module.exports = {
|
|
|
|
|
entry: {
|
|
|
|
|
e1: "./e1",
|
|
|
|
|
e2: "./e2",
|
|
|
|
|
e3: "./e3"
|
|
|
|
|
},
|
|
|
|
|
output: {
|
|
|
|
|
filename: "[name].js"
|
|
|
|
|
},
|
|
|
|
|
stats: {
|
|
|
|
|
hash: false,
|
2017-10-14 10:29:35 +08:00
|
|
|
timings: true,
|
2017-10-13 01:12:48 +08:00
|
|
|
chunks: true,
|
|
|
|
|
chunkModules: true,
|
|
|
|
|
modules: false
|
|
|
|
|
}
|
|
|
|
|
};
|