Skip to content

chore(docs): Update @sentry/gatsby README #3384

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 12, 2021
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
8 changes: 4 additions & 4 deletions packages/gatsby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

# Official Sentry SDK for GatsbyJS

Register the package as a plugin in `gastby-config.js`:
Register the package as a plugin in `gatsby-config.js`:

```javascript
{
module.exports = {
// ...
plugins: [
{
Expand Down Expand Up @@ -43,7 +43,7 @@ To automatically capture the `release` value on Vercel you will need to register
To enable tracing, supply either `tracesSampleRate` or `tracesSampler` to the options and make sure you have installed the `@sentry/tracing` package. This will also turn on the `BrowserTracing` integration for automatic instrumentation of pageloads and navigations.

```javascript
{
module.exports = {
// ...
plugins: [
{
Expand Down Expand Up @@ -84,7 +84,7 @@ To enable tracing, supply either `tracesSampleRate` or `tracesSampler` to the op
If you want to supply options to the `BrowserTracing` integration, use the `browserTracingOptions` parameter.

```javascript
{
module.exports = {
// ...
plugins: [
{
Expand Down