You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
close#11775
Similar to devtools, `Vue.config.devtools` is enabled by default for development and disabled by default for production. However, the developer can choose to override that behavior (for example, for debugging) by manually setting `Vue.config.devtools = true`. However, this same lenience is not afforded to `Vue.config.performance`. Even if explicitly enabling it, the developer's setting will be overridden by Vue in production.
This commit brings `Vue.config.performance` in line with `Vue.config.devtools`, by disabling it by default in production, but gives the developer the ability to explicitly enable it; for example, for debugging performance issues.
0 commit comments