()
| 46 | document.head.appendChild(theme); |
| 47 | |
| 48 | function bootstrap(): void { |
| 49 | bootstrapApplication(DevApp, { |
| 50 | providers: [ |
| 51 | provideRouter(DEV_APP_ROUTES), |
| 52 | provideNativeDateAdapter(), |
| 53 | { |
| 54 | provide: MATERIAL_ANIMATIONS, |
| 55 | useValue: { |
| 56 | animationsDisabled: !cachedAppState.animations, |
| 57 | } as AnimationsConfig, |
| 58 | }, |
| 59 | {provide: OverlayContainer, useClass: FullscreenOverlayContainer}, |
| 60 | {provide: MAT_RIPPLE_GLOBAL_OPTIONS, useExisting: DevAppRippleOptions}, |
| 61 | {provide: Directionality, useClass: DevAppDirectionality}, |
| 62 | cachedAppState.zoneless |
| 63 | ? provideZonelessChangeDetection() |
| 64 | : provideZoneChangeDetection({eventCoalescing: true, runCoalescing: true}), |
| 65 | ], |
| 66 | }); |
| 67 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…