2020-04-20 15:23:10 +08:00
|
|
|
/** @type {import("../../../").Configuration[]} */
|
2016-12-20 06:53:30 +08:00
|
|
|
module.exports = [
|
|
|
|
|
{
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2016-12-20 06:53:30 +08:00
|
|
|
entry: "./index",
|
2019-11-05 17:04:01 +08:00
|
|
|
output: {
|
|
|
|
|
filename: "a.js"
|
|
|
|
|
},
|
2016-12-20 06:53:30 +08:00
|
|
|
stats: "none"
|
|
|
|
|
},
|
2018-01-19 16:21:00 +08:00
|
|
|
|
2016-12-20 06:53:30 +08:00
|
|
|
{
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2016-12-20 06:53:30 +08:00
|
|
|
entry: "./index",
|
2019-11-05 17:04:01 +08:00
|
|
|
output: {
|
|
|
|
|
filename: "b.js"
|
|
|
|
|
},
|
2016-12-20 06:53:30 +08:00
|
|
|
stats: "none"
|
|
|
|
|
}
|
2017-01-11 17:51:58 +08:00
|
|
|
];
|