Skip to content

Commit 72bc602

Browse files
committed
Alex feedback
1 parent a832d7e commit 72bc602

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ The wizard then guides you through the setup process, asking you to enable addit
88

99
<Expandable title="Want to learn more about these features?">
1010

11-
- [**Error Monitoring**](/product/issues) (always enabled): Automatically report errors,
11+
- [**Issues**](/product/issues) (always enabled): Sentry's core error monitoring product that automatically reports errors,
1212
uncaught exceptions, and unhandled rejections. If you have something that
1313
looks like an exception, Sentry can capture it.
1414
- [**Tracing**](/product/tracing): Track software performance while seeing the
1515
impact of errors across multiple systems. For example, distributed tracing
1616
allows you to follow a request from the frontend to the backend and back.
17-
- [**Session Replay**](/product/explore/session-replay/web/getting-started/):
17+
- [**Session Replay**](/product/explore/session-replay/web):
1818
Get to the root cause of an issue faster by viewing a video-like reproduction
1919
of what was happening in the user's browser before, during, and after the
2020
problem.
@@ -25,10 +25,10 @@ This guide assumes that you enable all features and allow the wizard to create a
2525

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

28-
- Create config files with the default `Sentry.init()` calls for all runtimes (Node.js, Browser, and Edge)
29-
- Add a Next.js instrumentation hook to your project (`instrumentation.ts`)
30-
- Create or update your Next.js config with the default Sentry settings
31-
- Create `.sentryclirc` with an auth token to upload source maps (this file is automatically added to `.gitignore`)
32-
- Add an example page and route to your application to help verify your Sentry setup
28+
- Creates config files with the default `Sentry.init()` calls for all runtimes (Node.js, Browser, and Edge)
29+
- Adds a Next.js instrumentation hook to your project (`instrumentation.ts`)
30+
- Creates or updates your Next.js config with the default Sentry settings
31+
- Creates `.sentryclirc` with an auth token to upload source maps (this file is automatically added to `.gitignore`)
32+
- Adds an example page and route to your application to help verify your Sentry setup
3333

3434
</Expandable>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Next Steps
22

3-
You should now have integrated Sentry into your Next.js application and should already be sending error and performance data to your Sentry project.
3+
At this point, you should have integrated Sentry into your Next.js application and should already be sending error and performance data to your Sentry project.
44

55
Now's a good time to customize your setup and look into more advanced topics.
66
Our next recommended steps for you are:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
<Expandable level="warning" title="Are you developing with Turbopack?">
44

5-
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.
5+
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 from your frontend. Other than that, your dev server should be fully operational.
66

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

99
</Expandable>
1010

11-
If you haven't tested your setup yet, let's do it now. You can confirm that Sentry is working properly and sending data to your Sentry project by using the example page and route created by the installation wizard.
11+
If you haven't tested your configuration yet, let's do it now. You can confirm that Sentry is working properly and sending data to your Sentry project by using the example page and route created by the installation wizard.
1212

13-
1. Open the example page `/sentry-example-page` in your browser.
13+
1. Open the example page `/sentry-example-page` in your browser. For most Next.js applications, this will be at localhost.
1414
2. Click the "Throw error" button. This triggers two errors:
1515
- a frontend error
1616
- an error within the API route

0 commit comments

Comments
 (0)