We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77ca02c commit 6217f5aCopy full SHA for 6217f5a
lib/plugin/css-variables-collector.js
@@ -45,7 +45,7 @@ CSSVariablesCollectorPlugin.prototype = {
45
const vars = {};
46
Object.keys(this.vars).forEach((key) => {
47
const override = this.vars[key].updateAfterEval && varsOverride[key] !== undefined;
48
- if (override) {
+ if (override && process && process.env && process.env.LESS_OPENUI5_CSSVARS_REPORT_OVERRIDE) {
49
console.log(`Override variable "${key}" from "${this.vars[key].css}" to "${varsOverride[key].css}"`);
50
}
51
vars[key] = {
0 commit comments