From c225f249dd0b26ee2de22448d87160775b5347fd Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 8 Feb 2023 10:51:33 -0500 Subject: [PATCH] docs: clarify route level config, fix typo (#8944) --- documentation/docs/20-core-concepts/40-page-options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/20-core-concepts/40-page-options.md b/documentation/docs/20-core-concepts/40-page-options.md index e5114b775560..00a7bc6533ce 100644 --- a/documentation/docs/20-core-concepts/40-page-options.md +++ b/documentation/docs/20-core-concepts/40-page-options.md @@ -128,7 +128,7 @@ This option also affects [prerendering](#prerender). If `trailingSlash` is `alwa ## config -With the concept of [adapters](/docs/adapters), SvelteKit is able to run on a variety of platforms. Each of these might have specific configuration to further tweak the deployment — for example with Vercel or Netlify you could chose to deploy some parts of your app on the edge and others on serverless environments. +With the concept of [adapters](/docs/adapters), SvelteKit is able to run on a variety of platforms. Each of these might have specific configuration to further tweak the deployment — for example on Vercel you could choose to deploy some parts of your app on the edge and others on serverless environments. `config` is an object with key-value pairs at the top level. Beyond that, the concrete shape is dependent on the adapter you're using. Every adapter should provide a `Config` interface to import for type safety. Consult the documentation of your adapter for more information.