You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/gatsby/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,10 @@
7
7
8
8
# Official Sentry SDK for GatsbyJS
9
9
10
-
Register the package as a plugin in `gastby-config.js`:
10
+
Register the package as a plugin in `gatsby-config.js`:
11
11
12
12
```javascript
13
-
{
13
+
module.exports={
14
14
// ...
15
15
plugins: [
16
16
{
@@ -43,7 +43,7 @@ To automatically capture the `release` value on Vercel you will need to register
43
43
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.
44
44
45
45
```javascript
46
-
{
46
+
module.exports={
47
47
// ...
48
48
plugins: [
49
49
{
@@ -84,7 +84,7 @@ To enable tracing, supply either `tracesSampleRate` or `tracesSampler` to the op
84
84
If you want to supply options to the `BrowserTracing` integration, use the `browserTracingOptions` parameter.
0 commit comments