Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/platforms/javascript/guides/remix/manual-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,11 @@ export function handleError(
}
```

After you've completed this setup, the SDK will automatically capture unhandled errors and promise rejections, and monitor performance in the client. You can also [manually capture errors](/platforms/javascript/guides/remix/usage).
### Source Maps Upload

To enable readable stack traces, <PlatformLink to="/sourcemaps">configure source maps upload</PlatformLink> for your production builds.

After you've completed this setup, the SDK will automatically capture unhandled errors and promise rejections, and monitor performance. You can also [manually capture errors](/platforms/javascript/guides/remix/usage).

## Verify
This snippet includes an intentional error, so you can test that everything is working as soon as you set it up.
Expand All @@ -236,10 +240,6 @@ You can refer to [Remix Docs](https://remix.run/docs/en/main/guides/envvars#brow

</Note>

## Configure Source Maps Upload

To enable readable stack traces, <PlatformLink to="/sourcemaps">configure source maps upload</PlatformLink> for your production builds.

## Custom Express Server

You can import your server instrumentation file at the top of your Express server implementation.
Expand Down
Loading