Skip to content

Commit

Permalink
Fix config example in README.md for Nuxt (#13496)
Browse files Browse the repository at this point in the history
Config example fix. env.DSN was missing process prefix.
  • Loading branch information
leopoldkristjansson committed Aug 28, 2024
1 parent 2b3e26f commit 80894c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nuxt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Add a `sentry.client.config.(js|ts)` file to the root of your project:
import * as Sentry from '@sentry/nuxt';
Sentry.init({
dsn: env.DSN,
dsn: process.env.DSN,
});
```

Expand Down

0 comments on commit 80894c4

Please sign in to comment.