diff options
Diffstat (limited to 'client/src/main.ts')
-rw-r--r-- | client/src/main.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/main.ts b/client/src/main.ts index 7c058e12f..7caabe914 100644 --- a/client/src/main.ts +++ b/client/src/main.ts | |||
@@ -9,7 +9,7 @@ import { bootstrap } from '@angular/platform-browser-dynamic'; | |||
9 | import { provideRouter } from '@angular/router'; | 9 | import { provideRouter } from '@angular/router'; |
10 | 10 | ||
11 | import { routes } from './app/app.routes'; | 11 | import { routes } from './app/app.routes'; |
12 | import { AuthHttp, AuthService } from './app/shared'; | 12 | import { AuthHttp, AuthService, RestExtractor } from './app/shared'; |
13 | import { AppComponent } from './app/app.component'; | 13 | import { AppComponent } from './app/app.component'; |
14 | 14 | ||
15 | if (process.env.ENV === 'production') { | 15 | if (process.env.ENV === 'production') { |
@@ -26,6 +26,7 @@ bootstrap(AppComponent, [ | |||
26 | }), | 26 | }), |
27 | 27 | ||
28 | AuthService, | 28 | AuthService, |
29 | RestExtractor, | ||
29 | 30 | ||
30 | provideRouter(routes), | 31 | provideRouter(routes), |
31 | 32 | ||