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 eb00e3e commit ce1c02cCopy full SHA for ce1c02c
packages/nuxt/src/module/emulators.ts
@@ -12,7 +12,9 @@ export async function willUseEmulators(
12
// emulators is always defined
13
emulators.enabled &&
14
// Disable emulators on production unless the user explicitly enables them
15
- (process.env.NODE_ENV !== 'production' || process.env.VUEFIRE_EMULATORS)
+ (process.env.NODE_ENV !== 'production' ||
16
+ (process.env.VUEFIRE_EMULATORS &&
17
+ process.env.VUEFIRE_EMULATORS !== 'false'))
18
19
// Avoid even checking the firebase.json
20
if (!isEmulatorEnabled) {
0 commit comments