Skip to content

Commit 24734ff

Browse files
authored
Fix functions emulator origin url (#2471)
The default port in the firebase emulator for functions is 5001, not 5005
1 parent 3706c54 commit 24734ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/functions/functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ import { AngularFireFunctionsModule, ORIGIN } from '@angular/fire/functions';
110110
],
111111
...
112112
providers: [
113-
{ provide: ORIGIN, useValue: 'http://localhost:5005' }
113+
{ provide: ORIGIN, useValue: 'http://localhost:5001' }
114114
]
115115
})
116116
export class AppModule {}

0 commit comments

Comments
 (0)