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

11 lines
194 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: {
2020-09-02 00:08:09 +08:00
modulesSpace: Infinity,
modulesSort: "!name"
2017-02-07 18:27:41 +08:00
}
};