diff --git a/src/platforms/javascript/guides/sveltekit/manual-setup.mdx b/src/platforms/javascript/guides/sveltekit/manual-setup.mdx index 51924feaf18e42..46ad34443d5a45 100644 --- a/src/platforms/javascript/guides/sveltekit/manual-setup.mdx +++ b/src/platforms/javascript/guides/sveltekit/manual-setup.mdx @@ -199,17 +199,17 @@ You can set them as environment variables, for example in a `.env` file: Or, you can set them by passing a `sourceMapsUploadOptions` object to `sentrySvelteKit`, as seen in the example below. All available options are documented at [the Sentry Vite plugin repo](https://www.npmjs.com/package/@sentry/vite-plugin#options). ```javascript {filename:vite.config.js} -import { sveltekit } from '@sveltejs/kit/vite'; -import { sentrySvelteKit } from '@sentry/sveltekit'; +import { sveltekit } from "@sveltejs/kit/vite"; +import { sentrySvelteKit } from "@sentry/sveltekit"; export default { plugins: [ sentrySvelteKit({ sourceMapsUploadOptions: { - org: 'my-org-slug', - project: 'my-project-slug', + org: "my-org-slug", + project: "my-project-slug", authToken: process.env.SENTRY_AUTH_TOKEN, - url: 'https://sentry.my-company.com' + url: "https://sentry.my-company.com", cleanArtifacts: true, rewrite: false, },