We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d9856b commit f365a62Copy full SHA for f365a62
2 files changed
platform-includes/configuration/filter-application-key/javascript.astro.mdx
@@ -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,6 +1,6 @@
```js {tabTitle:Vite} {filename:vite.config.js} {6}
export default defineConfig({
- plugins: [
+ plugins: [
sentrySvelteKit({
sourceMapsUploadOptions: {
unstable_sentryVitePluginOptions: {
0 commit comments