From ed55a004af3f0888bc08affbf975cf178271f64b Mon Sep 17 00:00:00 2001 From: unix Date: Mon, 23 Mar 2020 02:32:31 +0800 Subject: [PATCH] docs: improve docs for server render --- pages/docs/getting-started/server-render.mdx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/pages/docs/getting-started/server-render.mdx b/pages/docs/getting-started/server-render.mdx index 6fe04f7..30685b9 100644 --- a/pages/docs/getting-started/server-render.mdx +++ b/pages/docs/getting-started/server-render.mdx @@ -14,9 +14,25 @@ export const meta = { All Components of `@zeit-ui/react` are compatible with **Server Render**. In fact, the document you see now is rendered by the server. -If you deploy by static files, you can skip this section. + + You just need a SPA application? + It is recommended to skip this section. + - + + +Will using server-side rendering make my application lose the advantages of SPA? Maybe you can use the `hybrid render` application, +Read +the post from the Next.js team to learn more. + +In addition, for server-side render and web applications, +we strongly recommend that you read this famous post + + 7-principles-of-rich-web-applications + from Guillermo Rauch. + + + ### Next.js