webpack/test/statsCases/reverse-sort-modules/webpack.config.js

11 lines
184 B
JavaScript
Raw Normal View History

/** @type {import("../../../").Configuration} */
2017-02-07 18:27:41 +08:00
module.exports = {
mode: "production",
2017-02-07 18:27:41 +08:00
entry: "./index",
performance: false,
stats: {
maxModules: 20,
2018-02-25 09:00:20 +08:00
modulesSort: "!id"
2017-02-07 18:27:41 +08:00
}
};