Skip to content

Commit

Permalink
0.3.3: Yet another README update
Browse files Browse the repository at this point in the history
  • Loading branch information
woldham-mgs committed May 7, 2024
1 parent 143a659 commit 5c49c16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ defineNuxtConfig({
```

### Disabling Integrations
If you would like to disable specific integrations, you can do so by providing a `disabledIntegrations` object in the `runtimeConfig`. The key should be the name of the integration and the value should be a boolean to enable or disable the integration. The key is case-insensitive.
If you would like to disable specific integrations, you can do so by providing a `disableIntegrations` object in the `runtimeConfig`. The key should be the name of the integration and the value should be a boolean to enable or disable the integration. The key is case-insensitive.

The default integrations that are enabled are:
- Breadcrumbs
Expand All @@ -118,7 +118,7 @@ defineNuxtConfig({
runtimeConfig: {
public: {
sentry: {
disabledIntegrations: {
disableIntegrations: {
Breadcrumbs: true
}
}
Expand All @@ -130,7 +130,7 @@ defineNuxtConfig({
or using environment variables:

```bash
NUXT_PUBLIC_SENTRY_DISABLED_INTEGRATIONS_BREADCRUMBS=true
NUXT_PUBLIC_SENTRY_DISABLE_INTEGRATIONS_BREADCRUMBS=true
```

## Development
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@binaryoverload/nuxt-sentry",
"version": "0.3.2",
"version": "0.3.3",
"description": "Nuxt 3 module for Sentry",
"repository": "https://github.com/binaryoverload/nuxt-sentry",
"license": "MIT",
Expand Down

0 comments on commit 5c49c16

Please sign in to comment.