You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/sveltekit/README.md
+11-13Lines changed: 11 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -16,10 +16,19 @@
16
16
17
17
## Compatibility
18
18
19
-
Currently, the minimum supported version of SvelteKit is `1.0.0`.
19
+
The minimum supported version of SvelteKit is `1.0.0`.
20
20
The SDK works best with Vite 4.2 and newer.
21
21
Older Vite versions might not generate source maps correctly.
22
22
23
+
The SDK supports the following SvelteKit adapters:
24
+
-`@sveltejs/adapter-auto` - for Vercel with the Node runtime. Other deployment targets might work but we don't guarantee compatibility.
25
+
-`@sveltejs/adapter-vercel` - only for Node (Lambda) runtimes, not yet Vercel's edge runtime
26
+
-`@sveltejs/adapter-node`
27
+
28
+
If you use the SDK with other adapters, we cannot guarantee that everything works as expected.
29
+
You might need to [manually configure source maps upload](#-configuring-source-maps-upload).
30
+
The SDK is currently not compatible with none-Node server runtimes, such as Vercel's Edge runtime or Cloudflare workers.
31
+
23
32
## General
24
33
25
34
This package is a wrapper around `@sentry/node` for the server and `@sentry/svelte` for the client side, with added functionality related to SvelteKit.
@@ -40,9 +49,7 @@ If the setup through the wizard doesn't work for you, you can also set up the SD
40
49
41
50
### 1. Prerequesits & Installation
42
51
43
-
1. Ensure you've set up the [`@sveltejs/adapter-node` adapter](https://kit.svelte.dev/docs/adapter-node)
0 commit comments