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
Copy file name to clipboardExpand all lines: packages/docs/options/README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -250,7 +250,8 @@ functions: true
250
250
// or
251
251
252
252
functions: {
253
-
location:'us-central1'
253
+
location:'us-central1',
254
+
emulatorPort:12345
254
255
}
255
256
```
256
257
@@ -261,6 +262,15 @@ functions: {
261
262
262
263
More information [here](https://firebase.google.com/docs/functions/locations).
263
264
265
+
#### emulatorPort
266
+
267
+
- Type: `Integer`
268
+
- Default: `null`
269
+
270
+
Sets up `useFunctionsEmulator("http://localhost:EMULATOR_PORT")` to point to a Cloud Functions emulator running locally instead of the productive one.
271
+
272
+
More information in the official Firebase [API Docs](https://firebase.google.com/docs/reference/android/com/google/firebase/functions/FirebaseFunctions.html#useFunctionsEmulator(java.lang.String)) and [Functions Docs](https://firebase.google.com/docs/functions/local-emulator).
273
+
264
274
### storage
265
275
266
276
Initializes Firebase Storage and makes it available via `$fireStorage` and `$fireStorageObj`.
0 commit comments