Skip to content

Commit e183e6a

Browse files
committed
integrate pr feedback
1 parent 14aab2d commit e183e6a

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

docs/platforms/javascript/common/index.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ During setup, you'll have the option to enable specific Sentry features for your
4343
Here's a quick overview of what's what:
4444

4545
- [**Error Monitoring**](/product/issues) (always enabled): Automatically report errors, uncaught exceptions, and unhandled rejections. If you have something that looks like an exception, Sentry can capture it.
46-
- **Tunneling**: Route browser requests to Sentry through a Next.js rewrite to bypass ad-blockers that might interfere with Sentry's data collection.
4746
- [**Tracing**](/product/tracing): Track software performance while seeing the impact of errors across multiple systems. For example, distributed tracing allows you to follow a request from the frontend to the backend and back.
4847
- [**Session Replay**](/product/explore/session-replay/web/getting-started/): Get to the root cause of an issue faster by viewing a video-like reproduction of what was happening in the user's browser before, during, and after the problem.
4948

platform-includes/getting-started-install/javascript.nextjs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can always add or remove config options manually later if needed. Though, th
1616

1717
<Expandable title="What does the installation wizard change inside your application?">
1818

19-
- Create config files with the default `Sentry.init()` calls for each runtime (node, browser, edge)
19+
- Create config files with the default `Sentry.init()` calls for all runtimes (Node.js, Browser, and Edge)
2020
- Add a Next.js instrumentation hook to your project (`instrumentation.ts`)
2121
- Create or update your Next.js config with the default Sentry settings
2222
- Create `.sentryclirc` with an auth token to upload source maps (this file is automatically added to `.gitignore`)

platform-includes/getting-started-next-steps/javascript.nextjs.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ You should now have integrated Sentry into your Next.js application and should a
55
Now's a good time to customize your setup and look into more advanced topics.
66
Our next recommended steps for you are:
77

8-
- Learn more about our [Vercel integration](/organization/integrations/deployment/vercel/)
9-
- Continue to [customize your configuration](/platforms/javascript/guides/nextjs/configuration/)
108
- Learn how to [manually capture errors](/platforms/javascript/guides/nextjs/usage/)
9+
- Continue to [customize your configuration](/platforms/javascript/guides/nextjs/configuration/)
1110
- Get familiar with [Sentry's product features](/product) like tracing, insights, and alerts
11+
- Learn more about our [Vercel integration](/organization/integrations/deployment/vercel/)
1212

1313
<Expandable permalink={false} title="Did you experience any issues with this guide?">
1414

platform-includes/getting-started-primer/javascript.nextjs.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<Expandable title="Are you developing with Turbopack?">
22

3-
The Sentry SDK doesn't fully support `next dev --turbo` as Turbopack is still under development.
4-
5-
However, Sentry will work fine in your production builds.
3+
The Sentry SDK doesn't fully support `next dev --turbo` as Turbopack is still under development. This means that the Sentry SDK will not capture any data for the frontend. Other than that, your devserver should be fully operational.
64

75
Check the latest information on [Sentry's support for Turbopack on GitHub](https://github.com/getsentry/sentry-javascript/issues/8105).
86

platform-includes/getting-started-verify/javascript.nextjs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Now head over to your Sentry project on [Sentry.io](https://sentry.io) to view t
2121

2222
<Alert level="warning" title="Important">
2323

24-
Errors triggered from within your browser's developer tools are sandboxed, so they will not trigger Sentry's error monitoring.
24+
Errors triggered from within your browser's developer tools (i.e., the browser console) are sandboxed, so they will not trigger Sentry's error monitoring.
2525

2626
</Alert>
2727

0 commit comments

Comments
 (0)