2025-07-16 22:29:28 +08:00
|
|
|
"use strict";
|
|
|
|
|
|
2020-04-20 13:36:55 +08:00
|
|
|
/** @type {import("../../../").Configuration} */
|
2017-10-13 01:12:48 +08:00
|
|
|
module.exports = {
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2017-10-13 01:12:48 +08:00
|
|
|
entry: {
|
|
|
|
|
e1: "./e1",
|
|
|
|
|
e2: "./e2",
|
|
|
|
|
e3: "./e3"
|
|
|
|
|
},
|
|
|
|
|
output: {
|
|
|
|
|
filename: "[name].js"
|
|
|
|
|
},
|
|
|
|
|
stats: {
|
|
|
|
|
hash: false,
|
2017-10-17 02:48:50 +08:00
|
|
|
timings: false,
|
2018-01-31 09:34:08 +08:00
|
|
|
builtAt: false,
|
2017-10-13 01:12:48 +08:00
|
|
|
chunks: true,
|
|
|
|
|
chunkModules: true,
|
2020-09-02 00:08:09 +08:00
|
|
|
dependentModules: true,
|
2017-10-13 01:12:48 +08:00
|
|
|
modules: false
|
|
|
|
|
}
|
|
|
|
|
};
|