We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6230732 commit 1b33120Copy full SHA for 1b33120
apps/web/next.config.js
@@ -378,6 +378,11 @@ module.exports = MillionLint.next({
378
destination: '/build/:path',
379
permanent: true,
380
},
381
+ {
382
+ source: '/500',
383
+ destination: '/',
384
+ permanent: false,
385
+ },
386
];
387
388
apps/web/tracer/initialize.js
@@ -27,7 +27,7 @@ const initTracer = () => {
27
tracer.use('http', {
28
enabled: true,
29
service: process.env.CODEFLOW_PROJECT_NAME,
30
- blocklist: /_health/,
+ blocklist: [/_health/, /500/],
31
});
32
33
return tracer;
0 commit comments