From 1771feb4ba213726e73eb65267a25b7f90320ec0 Mon Sep 17 00:00:00 2001 From: Nathaniel Tucker Date: Sat, 21 Oct 2023 13:47:43 +0100 Subject: [PATCH] docs: Fix link --- docs/core/guides/ssr.md | 6 +++--- website/blog/2023-07-04-v0.2-release-announcement.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/core/guides/ssr.md b/docs/core/guides/ssr.md index c7451a4a8d80..6120b1bcd7a7 100644 --- a/docs/core/guides/ssr.md +++ b/docs/core/guides/ssr.md @@ -11,12 +11,12 @@ import StackBlitz from '@site/src/components/StackBlitz'; -Server Side Rendering can improve the first-load performance of your application. Reactive Data +Server Side Rendering (SSR) can improve the first-load performance of your application. Reactive Data Client takes this one step further by pre-populating the data store. Unlike other SSR methodologies, Reactive Data Client becomes interactive the moment the page is visible, making [data mutations](https://dataclient.io/docs/getting-started/mutations) instantaneous. Additionally there is no need for additional data fetches that increase server load and slow client hydration, potentially causing application stutters. -## NextJS +## NextJS SSR We've optimized integration into NextJS with a custom [Document](https://nextjs.org/docs/advanced-features/custom-document) and NextJS specific wrapper for [App](https://nextjs.org/docs/advanced-features/custom-app) @@ -147,7 +147,7 @@ class User extends Entity { } ``` -## Express JS +## Express JS SSR When implementing your own server using express. diff --git a/website/blog/2023-07-04-v0.2-release-announcement.md b/website/blog/2023-07-04-v0.2-release-announcement.md index d5a2ffe5b6b5..9603818ad842 100644 --- a/website/blog/2023-07-04-v0.2-release-announcement.md +++ b/website/blog/2023-07-04-v0.2-release-announcement.md @@ -132,7 +132,7 @@ Other highlights include - [Controller.fetch() return value is denormalized from schema](https://github.com/reactive/data-client/pull/2545) - [Manager action type updates](https://github.com/reactive/data-client/pull/2690) -For all details, [keep reading](/blog/2023/07/04/v8-release-announcement#data-clientreact-02): +For all details, [keep reading](/blog/2023/07/04/v0.2-release-announcement#data-clientreact-02):