Skip to content

Commit

Permalink
update adapter docs (#3883)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Feb 14, 2022
1 parent 1b0ede2 commit ad603e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions documentation/docs/10-adapters.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ By default, projects are configured to use `@sveltejs/adapter-auto`, which detec

SvelteKit offers a number of officially-supported adapters.

The following platforms require no additional configuration:
You can deploy to the following platforms with the default adapter, `adapter-auto`:

- [Cloudflare Pages](https://developers.cloudflare.com/pages/) via [`adapter-cloudflare`](https://github.com/sveltejs/kit/tree/master/packages/adapter-cloudflare)
- [Netlify](https://netlify.com) via [`adapter-netlify`](https://github.com/sveltejs/kit/tree/master/packages/adapter-netlify)
- [Vercel](https://vercel.com) via [`adapter-vercel`](https://github.com/sveltejs/kit/tree/master/packages/adapter-vercel)

#### Node.js

To create a simple Node server, install the `@sveltejs/adapter-node@next` package and update your `svelte.config.js`:
To create a simple Node server, install the [`@sveltejs/adapter-node@next`](https://github.com/sveltejs/kit/tree/master/packages/adapter-node) package and update your `svelte.config.js`:

```diff
// svelte.config.js
Expand All @@ -44,7 +44,7 @@ export default {

#### Static sites

Most adapters will generate static HTML for any [prerenderable](/docs/page-options#prerender) pages of your site. In some cases, your entire app might be prerenderable, in which case you can use `@sveltejs/adapter-static@next` to generate static HTML for _all_ your pages. A fully static site can be hosted on a wide variety of platforms, including static hosts like [GitHub Pages](https://pages.github.com/).
Most adapters will generate static HTML for any [prerenderable](/docs/page-options#prerender) pages of your site. In some cases, your entire app might be prerenderable, in which case you can use [`@sveltejs/adapter-static@next`](https://github.com/sveltejs/kit/tree/master/packages/adapter-static) to generate static HTML for _all_ your pages. A fully static site can be hosted on a wide variety of platforms, including static hosts like [GitHub Pages](https://pages.github.com/).

```diff
// svelte.config.js
Expand Down

0 comments on commit ad603e7

Please sign in to comment.