From 5c49c16366d7c1137a442e7ba70cc662616bd96f Mon Sep 17 00:00:00 2001 From: William Oldham Date: Tue, 7 May 2024 11:44:08 +0100 Subject: [PATCH] 0.3.3: Yet another README update --- README.md | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 106b97a..d0a2600 100644 --- a/README.md +++ b/README.md @@ -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 @@ -118,7 +118,7 @@ defineNuxtConfig({ runtimeConfig: { public: { sentry: { - disabledIntegrations: { + disableIntegrations: { Breadcrumbs: true } } @@ -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 diff --git a/package.json b/package.json index 0adb57b..28de155 100644 --- a/package.json +++ b/package.json @@ -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",