Skip to content

Commit 36eeb6a

Browse files
committed
review comments
1 parent f7105a7 commit 36eeb6a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<Alert level="warning">
2-
This SDK is **in an beta state**. It may experience breaking changes. Please reach out on
2+
This SDK is **in an beta state**. It may still experience changes in behavior. Please reach out on
33
[GitHub](https://github.com/getsentry/sentry-javascript/issues/new/choose) if you have any feedback or concerns.
44
</Alert>

platform-includes/getting-started-sourcemaps/javascript.nuxt.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ export default defineNuxtConfig({
2525
});
2626
```
2727

28-
Nuxt sets default values for the source maps ([Nuxt docs](https://nuxt.com/docs/api/nuxt-config#sourcemap)) and the SDK currently keeps the source maps settings if they are explicitly defined.
29-
To enable this source maps setting, add the following code to you Nuxt config:
28+
To upload source maps, the Sentry Nuxt Module will automatically enable source map generation in your project if it is not already enabled.
29+
However, you need to explicitly enable source map generation on the client-side. To do this, add the following code to your Nuxt configuration:
3030

3131
```javascript {filename:nuxt.config.ts} {2}
3232
export default defineNuxtConfig({
3333
sourcemap: { client: true }
3434
});
3535
```
36+
37+
This step is necessary because Nuxt sets default values for source maps ([Nuxt docs](https://nuxt.com/docs/api/nuxt-config#sourcemap)), and the Sentry Nuxt Module keeps these settings when they are explicitly defined.

0 commit comments

Comments
 (0)