Blog platform running on ATproto
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add(frontend): enable ssr hydration

+3 -1
+3 -1
frontend/src/app/app.config.server.ts
··· 2 2 import { provideServerRendering, withRoutes } from '@angular/ssr'; 3 3 import { appConfig } from './app.config'; 4 4 import { serverRoutes } from './app.routes.server'; 5 + import {provideClientHydration} from '@angular/platform-browser'; 5 6 6 7 const serverConfig: ApplicationConfig = { 7 8 providers: [ 8 - provideServerRendering(withRoutes(serverRoutes)) 9 + provideServerRendering(withRoutes(serverRoutes)), 10 + provideClientHydration() 9 11 ] 10 12 }; 11 13