From 11d009e4c262fa919e5880598535c768032da3d4 Mon Sep 17 00:00:00 2001 From: Umanskiy Aleksey Date: Tue, 17 Dec 2024 14:25:58 +0200 Subject: [PATCH] feat(ssr-docs); merged development --- apps/ngx-bootstrap-docs/project.json | 2 +- apps/ngx-bootstrap-docs/src/app/app.module.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/ngx-bootstrap-docs/project.json b/apps/ngx-bootstrap-docs/project.json index b99fc635b5..0ad234cb00 100644 --- a/apps/ngx-bootstrap-docs/project.json +++ b/apps/ngx-bootstrap-docs/project.json @@ -168,4 +168,4 @@ "defaultConfiguration": "production" } } -} \ No newline at end of file +} diff --git a/apps/ngx-bootstrap-docs/src/app/app.module.ts b/apps/ngx-bootstrap-docs/src/app/app.module.ts index 9d6f6eb44b..15b63200b7 100644 --- a/apps/ngx-bootstrap-docs/src/app/app.module.ts +++ b/apps/ngx-bootstrap-docs/src/app/app.module.ts @@ -7,7 +7,6 @@ import { ngdoc } from '../ng-api-doc'; import { AppComponent } from './app.component'; import { DOCS_TOKENS, DocsModule, NgApiDoc, SIDEBAR_ROUTES, SidebarRoutesStructure } from '@ngx-bootstrap-doc/docs'; import { routes } from './app.routing'; -import { provideClientHydration } from '@angular/platform-browser'; @NgModule({ declarations: [ AppComponent @@ -19,8 +18,7 @@ import { provideClientHydration } from '@angular/platform-browser'; { provide: NgApiDoc, useValue: ngdoc }, { provide: DOCS_TOKENS, useValue: routes }, { provide: SIDEBAR_ROUTES, useValue: SidebarRoutesStructure }, - provideHttpClient(withInterceptorsFromDi()), - provideClientHydration() + provideHttpClient(withInterceptorsFromDi()) ] }) export class AppModule { }