Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ transportOptions:{
}
```

## Session Replay

`makeBrowserOfflineTransport` also works with [Session Replay](/platforms/javascript/session-replay/). When replay envelopes are queued, they are always sent in order — only one replay envelope is in-flight at a time, and any that fail are placed back at the front of the queue to preserve ordering. This ensures replay segments arrive at Sentry in the correct sequence even after connectivity is restored.

<Note>

`makeBrowserOfflineTransport` is not included in CDN bundle builds. If you load the Sentry SDK via CDN, offline caching (including replay offline support) is not available.

</Note>

#### Browser Support

Offline caching is not supported in IE due to a lack of IndexedDB features.
Loading