Skip to content

Commit 9d14934

Browse files
committed
docs: Update link to archive of removed page
There is a newer page[1] in kind of the same spirit, but does not contain the exact quote linked. [1] https://v2.remix.run/docs/discussion/server-vs-client/
1 parent c7143f3 commit 9d14934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

template/docs/decisions/{{app_name}}/0005-server-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Pros
3030
- Makes it easier to implement a clearer separation of concerns:
3131
- [Middleware](https://nextjs.org/docs/advanced-features/middleware) provide a place for enforcing auth, reading/setting secure cookies, setting HTTP headers, and redirects.
3232
- [Loaders](https://nextjs.org/docs/basic-features/data-fetching/get-server-side-props) provide a place for fetching all data required for rendering the page.
33-
- Running page logic and rendering on the server makes it possible to send lighter payloads to the client. This approach can work well for a large spectrum of device and network conditions. [You can make your server fast, but you can't control the user's device or network](https://remix.run/docs/en/v1/pages/philosophy%23serverclient-model).
33+
- Running page logic and rendering on the server makes it possible to send lighter payloads to the client. This approach can work well for a large spectrum of device and network conditions. [You can make your server fast, but you can't control the user's device or network](https://web.archive.org/web/20250609124726/https://remix.run/docs/en/1.19.3/pages/philosophy#serverclient-model).
3434
- Data fetching on the server enables accessing authenticated APIs (e.g. using TLS mutual auth to talk to fetch data from a protected third-party API).
3535
- Low effort to implement [dynamic routes](https://nextjs.org/docs/routing/dynamic-routes) (e.g `/claim/:claim_id`)
3636
- [API routes](https://nextjs.org/docs/pages/building-your-application/routing/api-routes) can be created to handle other types of HTTP requests (POST, PUT, etc).

0 commit comments

Comments
 (0)