Skip to content

Commit f365a62

Browse files
docs(js): Add Astro snippet for filter integration (#13035)
1 parent 8d9856b commit f365a62

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
```js {tabTitle:Vite} {filename:astro.config.mjs} {6}
2+
export default defineConfig({
3+
integrations: [
4+
sentry({
5+
sourceMapsUploadOptions: {
6+
unstable_sentryVitePluginOptions: {
7+
applicationKey: "your-custom-application-key",
8+
},
9+
},
10+
}),
11+
],
12+
});
13+
```

platform-includes/configuration/filter-application-key/javascript.sveltekit.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```js {tabTitle:Vite} {filename:vite.config.js} {6}
22
export default defineConfig({
3-
plugins: [
3+
plugins: [
44
sentrySvelteKit({
55
sourceMapsUploadOptions: {
66
unstable_sentryVitePluginOptions: {

0 commit comments

Comments
 (0)