webpack/test/statsCases/performance-no-hints/webpack.config.js

16 lines
225 B
JavaScript
Raw Permalink Normal View History

"use strict";
/** @type {import("../../../").Configuration} */
2016-12-14 19:03:24 +08:00
module.exports = {
mode: "production",
2016-12-14 19:03:24 +08:00
entry: "./index",
stats: {
colors: true,
hash: false,
entrypoints: true
},
performance: {
hints: false
}
};