diff options
author | 2022-01-18 08:50:29 -0800 | |
---|---|---|
committer | 2022-01-18 08:50:29 -0800 | |
commit | 0d6e964693738f1c272a111d8f3dd4bd324a06fc (patch) | |
tree | a031c674d4867746db35962ac2634924fbec236b /docs/src/pages/en | |
parent | 6ade95313b4f57658a8815b6e26410b749004d03 (diff) | |
download | astro-0d6e964693738f1c272a111d8f3dd4bd324a06fc.tar.gz astro-0d6e964693738f1c272a111d8f3dd4bd324a06fc.tar.zst astro-0d6e964693738f1c272a111d8f3dd4bd324a06fc.zip |
Fix "Island Architecture" phrase attribution (#2411)
Remove incorrect statement that Jason Miller coined the phrase "Island Architecture."
Fixes #2407
Diffstat (limited to 'docs/src/pages/en')
-rw-r--r-- | docs/src/pages/en/core-concepts/component-hydration.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/src/pages/en/core-concepts/component-hydration.md b/docs/src/pages/en/core-concepts/component-hydration.md index 1b4f7946c..ac9e33e79 100644 --- a/docs/src/pages/en/core-concepts/component-hydration.md +++ b/docs/src/pages/en/core-concepts/component-hydration.md @@ -41,9 +41,8 @@ _Note: Partial hydration is sometimes called "progressive enhancement" or "progr **Island architecture** is the idea of using partial hydration to build entire websites. Island architecture is an alternative to the popular idea of building your website into a client-side JavaScript bundle that must be shipped to the user. -To quote Jason Miller, who [coined the phrase](https://jasonformat.com/islands-architecture/): - > In an "islands" model, server rendering is not a bolt-on optimization aimed at improving SEO or UX. Instead, it is a fundamental part of how pages are delivered to the browser. The HTML returned in response to navigation contains a meaningful and immediately renderable representation of the content the user requested. +> <br/> -- [Jason Miller](https://jasonformat.com/islands-architecture/) Besides the obvious performance benefits of sending less JavaScript down to the browser, there are two key benefits to island architecture: |