diff options
author | 2023-09-11 19:37:05 -0700 | |
---|---|---|
committer | 2023-09-11 20:12:48 -0700 | |
commit | 03b8e9d5cf3ddef88424ad3755ceda55a8230141 (patch) | |
tree | c30a16364f85350cb9ed11f9c4501a3fbf7ab69e | |
parent | f267c1d097923a2d2992f9f60a6dd365fe706512 (diff) | |
download | bun-03b8e9d5cf3ddef88424ad3755ceda55a8230141.tar.gz bun-03b8e9d5cf3ddef88424ad3755ceda55a8230141.tar.zst bun-03b8e9d5cf3ddef88424ad3755ceda55a8230141.zip |
fix formatting in sveltekit guide
-rw-r--r-- | docs/guides/ecosystem/sveltekit.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/guides/ecosystem/sveltekit.md b/docs/guides/ecosystem/sveltekit.md index 77ca3c624..172b77299 100644 --- a/docs/guides/ecosystem/sveltekit.md +++ b/docs/guides/ecosystem/sveltekit.md @@ -72,20 +72,20 @@ To build for production, you'll need to add the right SvelteKit adapter. Current Now, make the following changes to your `svelte.config.js`. -```ts +```ts-diff - import adapter from "@sveltejs/adapter-auto"; + import adapter from "svelte-adapter-bun"; -import { vitePreprocess } from "@sveltejs/kit/vite"; + import { vitePreprocess } from "@sveltejs/kit/vite"; -/** @type {import('@sveltejs/kit').Config} */ -const config = { - kit: { - adapter: adapter(), - }, - preprocess: vitePreprocess(), -}; + /** @type {import('@sveltejs/kit').Config} */ + const config = { + kit: { + adapter: adapter(), + }, + preprocess: vitePreprocess(), + }; -export default config; + export default config; ``` --- |