2017-03-26 15:41:52 +08:00
|
|
|
"use strict";
|
|
|
|
|
2020-04-20 13:36:55 +08:00
|
|
|
const {
|
|
|
|
ids: { NamedChunkIdsPlugin }
|
|
|
|
} = require("../../../");
|
2017-03-26 15:41:52 +08:00
|
|
|
|
2020-04-20 13:36:55 +08:00
|
|
|
/** @type {import("../../../").Configuration} */
|
2017-03-26 15:41:52 +08:00
|
|
|
module.exports = {
|
2017-11-21 17:41:01 +08:00
|
|
|
mode: "production",
|
2018-12-07 19:26:35 +08:00
|
|
|
optimization: { chunkIds: false },
|
2017-03-26 15:41:52 +08:00
|
|
|
entry: {
|
2018-02-25 09:00:20 +08:00
|
|
|
entry: "./entry"
|
2017-03-26 15:41:52 +08:00
|
|
|
},
|
2020-04-20 13:36:55 +08:00
|
|
|
plugins: [new NamedChunkIdsPlugin()]
|
2017-03-26 15:41:52 +08:00
|
|
|
};
|