Skip to content

Commit

Permalink
feat: implement client side hydration
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Sep 8, 2023
1 parent dc22f2a commit 0633430
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {BrowserModule, provideClientHydration} from '@angular/platform-browser';

import {AppRoutingModule} from './app-routing.module';
import {AppComponent} from './app.component';
Expand Down Expand Up @@ -143,7 +143,7 @@ export function createTranslateLoader(http: HttpClient) {
defaultLanguage: 'rm'
}),
],
providers: [],
providers: [provideClientHydration()],
bootstrap: [AppComponent]
})
export class AppModule {
Expand Down

0 comments on commit 0633430

Please sign in to comment.