Skip to content

Commit d890a70

Browse files
committed
docs(nuxt): Remove beta notice
1 parent b271bc8 commit d890a70

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

packages/nuxt/README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@
44
</a>
55
</p>
66

7-
# Official Sentry SDK for Nuxt (BETA)
7+
# Official Sentry SDK for Nuxt
88

99
[![npm version](https://img.shields.io/npm/v/@sentry/nuxt.svg)](https://www.npmjs.com/package/@sentry/nuxt)
1010
[![npm dm](https://img.shields.io/npm/dm/@sentry/nuxt.svg)](https://www.npmjs.com/package/@sentry/nuxt)
1111
[![npm dt](https://img.shields.io/npm/dt/@sentry/nuxt.svg)](https://www.npmjs.com/package/@sentry/nuxt)
1212

13-
This SDK is in **Beta**. The API is stable but updates may include minor changes in behavior. Please reach out on
14-
[GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback or concerns. This
15-
SDK is for [Nuxt](https://nuxt.com/). If you're using [Vue](https://vuejs.org/) see our
16-
[Vue SDK here](https://github.com/getsentry/sentry-javascript/tree/develop/packages/vue).
13+
This SDK is for [Nuxt](https://nuxt.com/). If you're using [Vue](https://vuejs.org/) see our [Vue SDK here](https://github.com/getsentry/sentry-javascript/tree/develop/packages/vue).
1714

1815
## Links
1916

@@ -30,7 +27,7 @@ functionality related to Nuxt.
3027

3128
**Limitations:**
3229

33-
- Server monitoring is not available during development mode (`nuxt dev`)
30+
- Server-side (Nitro) tracing is not available during development mode (`nuxt dev`)
3431

3532
## Manual Setup
3633

packages/nuxt/src/module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ export default defineNuxtModule<ModuleOptions>({
7979
consoleSandbox(() => {
8080
// eslint-disable-next-line no-console
8181
console.log(
82-
'[Sentry] Your application is running in development mode. Note: @sentry/nuxt is in beta and may not work as expected on the server-side (Nitro). Errors are reported, but tracing does not work.',
82+
'%c [Sentry] Your application is running in development mode. @sentry/nuxt will only report errors and will not add performance tracing on the server-side (Nitro) in development mode.',
83+
'color:#fe69c0',
8384
);
8485
});
8586
}

0 commit comments

Comments
 (0)