Skip to content

Commit 1aa5f29

Browse files
Ayub Kokabishanamatthews
andauthored
add a missed colon (#7256)
* add a missed colon * prettier fixes --------- Co-authored-by: Shana Matthews <[email protected]>
1 parent 4fd481a commit 1aa5f29

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/platforms/javascript/guides/sveltekit/manual-setup.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -199,17 +199,17 @@ You can set them as environment variables, for example in a `.env` file:
199199
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).
200200

201201
```javascript {filename:vite.config.js}
202-
import { sveltekit } from '@sveltejs/kit/vite';
203-
import { sentrySvelteKit } from '@sentry/sveltekit';
202+
import { sveltekit } from "@sveltejs/kit/vite";
203+
import { sentrySvelteKit } from "@sentry/sveltekit";
204204

205205
export default {
206206
plugins: [
207207
sentrySvelteKit({
208208
sourceMapsUploadOptions: {
209-
org: 'my-org-slug',
210-
project: 'my-project-slug',
209+
org: "my-org-slug",
210+
project: "my-project-slug",
211211
authToken: process.env.SENTRY_AUTH_TOKEN,
212-
url: 'https://sentry.my-company.com'
212+
url: "https://sentry.my-company.com",
213213
cleanArtifacts: true,
214214
rewrite: false,
215215
},

0 commit comments

Comments
 (0)