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 4219dcc commit bf8966fCopy full SHA for bf8966f
src/utils/env.js
@@ -72,4 +72,5 @@ export const getEnv = (key, fallback = null) => {
72
return env[key] || fallback
73
}
74
75
-export const getNoWarn = () => getEnv('BOOTSTRAP_VUE_NO_WARN')
+export const getNoWarn = () =>
76
+ getEnv('BOOTSTRAP_VUE_NO_WARN') || getEnv('NODE_ENV') === 'production'
0 commit comments