Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9d02a1c

Browse files
committed
chore: added correct logo
1 parent f14c17b commit 9d02a1c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/docs/static/img/isr-logo.png

70.7 KB
Loading

libs/isr/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img width="460" height="300" src="https://raw.githubusercontent.com/eneajaho/ngx-isr/main/projects/ngx-isr-demo/src/assets/logo.svg">
2+
<img width="460" height="300" src="https://raw.githubusercontent.com/rx-angular/rx-angular/main/apps/docs/static/img/isr-logo.png">
33
</p>
44

55
# Incremental Static Regeneration for Angular
@@ -132,7 +132,7 @@ Example:
132132
> **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.
133133
134134
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.
136136

137137
Or, if you are in a standalone app, you can register the providers in your `app.config.server.ts` file.
138138

@@ -143,7 +143,7 @@ import { IsrModule } from '@rx-angular/isr/server'; // <-- Import module from li
143143

144144
@NgModule({
145145
imports: [
146-
...IsrModule.forRoot(), // <-- Use it in module imports
146+
IsrModule.forRoot(), // <-- Use it in module imports
147147
],
148148
})
149149
export class AppServerModule {}

0 commit comments

Comments
 (0)