File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,11 @@ import {
20
20
isDevMode ,
21
21
} from '@angular/core' ;
22
22
import { provideRouter } from '@angular/router' ;
23
-
24
23
import { routes } from './app.routes' ;
25
24
import {
26
25
provideClientHydration ,
27
26
withEventReplay ,
28
27
} from '@angular/platform-browser' ;
29
-
30
28
import { provideFirebaseApp , initializeApp } from '@angular/fire/app' ;
31
29
import { provideAuth , getAuth , connectAuthEmulator } from '@angular/fire/auth' ;
32
30
import {
@@ -47,12 +45,10 @@ export const appConfig: ApplicationConfig = {
47
45
provideFirebaseApp ( ( ) => initializeApp ( firebaseConfig ) ) ,
48
46
provideAuth ( ( ) => {
49
47
const auth = getAuth ( ) ;
50
-
51
48
if ( isDevMode ( ) ) {
52
49
/** Enable emulators in development */
53
50
connectAuthEmulator ( auth , 'http://localhost:9099' ) ;
54
51
}
55
-
56
52
return auth ;
57
53
} ) ,
58
54
provideFirebaseUI ( ( apps ) => initializeUI ( { app : apps [ 0 ] } ) ) ,
Original file line number Diff line number Diff line change 15
15
packages :
16
16
- packages/*
17
17
- packages/angular/projects/*
18
- # - examples/* Remove until all package depenencies are published to npm
18
+ - examples/angular
19
19
onlyBuiltDependencies :
20
20
- ' @parcel/watcher'
21
21
- esbuild
You can’t perform that action at this time.
0 commit comments