Skip to content

Commit

Permalink
docs: add experimental tag to emulators
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Jul 20, 2023
1 parent e80419e commit 6518caf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions packages/nuxt/src/module/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ export interface VueFireNuxtModuleOptions {
*/
admin?: {
/**
* Firebase Admin Options passed to `firebase-admin`'s `initializeApp()`. Required if you are using the auth, or the
* app-check module.
* Firebase Admin Options passed to `firebase-admin`'s `initializeApp()`.
*/
options?: Omit<AppOptions, 'credential'>

// TODO: remove, use env variables instead
/**
* Firebase Admin Service Account passed to `firebase-admin`'s `initializeApp()`. Required if you are adding an
* adminConfig.
Expand All @@ -46,7 +44,12 @@ export interface VueFireNuxtModuleOptions {
auth?: boolean

/**
* Controls whether to use emulators or not. Pass `false` to disable emulators. When set to `true`, emulators are enabled when they are detected in the `firebase.json` file. You still need to run the emulators in parallel to your app.
* Controls whether to use emulators or not. Pass `false` to disable emulators. When set to `true`, emulators are
* enabled when they are detected in the `firebase.json` file. You still need to run the emulators in parallel to your
* app.
*
* @default true
* @experimental
*/
emulators?:
| boolean
Expand Down

0 comments on commit 6518caf

Please sign in to comment.