You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **NOTE:** Routes that don't have revalidate key in data won't be handled by ISR. They will fallback to Angular default server side rendering pipeline.
133
133
134
134
6. Register providers
135
-
To register the ISR providers, you can either import `NgxIsrModule` in your `AppServerModule` or provide `provideISR` in your `AppServerModule` providers.
135
+
To register the ISR providers, you can either import `IsrModule` in your `AppServerModule` or provide `provideISR` in your `AppServerModule` providers.
136
136
137
137
Or, if you are in a standalone app, you can register the providers in your `app.config.server.ts` file.
138
138
@@ -143,7 +143,7 @@ import { IsrModule } from '@rx-angular/isr/server'; // <-- Import module from li
143
143
144
144
@NgModule({
145
145
imports: [
146
-
...IsrModule.forRoot(), // <-- Use it in module imports
146
+
IsrModule.forRoot(), // <-- Use it in module imports
0 commit comments