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
This release adds a new option to `httpIntegration` to ignore requests for static assets (e.g. `favicon.xml` or `robots.txt`). The option defaults to `true`, meaning that going forward, such requests will not be traced by default. You can still enable tracing for these requests by setting the option to `false`:
150
+
151
+
```js
152
+
Sentry.init({
153
+
integrations: [
154
+
Sentry.httpIntegration({
155
+
// defaults to true, set to false to enable traces for static assets
156
+
ignoreStaticAssets:false,
157
+
}),
158
+
],
159
+
});
160
+
```
161
+
162
+
### Other Changes
163
+
164
+
- fix(nuxt): Do not drop parametrized routes ([#17357](https://github.com/getsentry/sentry-javascript/pull/17357))
0 commit comments