From 98153f40242e939fc72527b65c88d9054835c9a3 Mon Sep 17 00:00:00 2001 From: Ignatius Bagus Date: Sat, 29 Jan 2022 22:04:26 +0700 Subject: [PATCH] clarify config as browser.hydrate Co-authored-by: Bjorn Lu --- documentation/docs/11-page-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/11-page-options.md b/documentation/docs/11-page-options.md index 2efe0c18f4b6..3beeea49c76e 100644 --- a/documentation/docs/11-page-options.md +++ b/documentation/docs/11-page-options.md @@ -24,7 +24,7 @@ Note that this will disable client-side routing for any navigation from this pag ### hydrate -Ordinarily, SvelteKit [hydrates](#appendix-hydration) your server-rendered HTML into an interactive page. Some pages don't require JavaScript at all — many blog posts and 'about' pages fall into this category. In these cases you can skip hydration when the app boots up with the app-wide [`hydrate` config option](#configuration-browser) or the page-level `hydrate` export: +Ordinarily, SvelteKit [hydrates](#appendix-hydration) your server-rendered HTML into an interactive page. Some pages don't require JavaScript at all — many blog posts and 'about' pages fall into this category. In these cases you can skip hydration when the app boots up with the app-wide [`browser.hydrate` config option](#configuration-browser) or the page-level `hydrate` export: ```html