We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df405f2 commit 49bafbcCopy full SHA for 49bafbc
src/build/resolveOpenAPI.ts
@@ -26,7 +26,11 @@ async function resolveOpenAPI(): Promise<DeRefedOpenAPI> {
26
}
27
28
const response = await fetch(
29
- `https://raw.githubusercontent.com/getsentry/sentry-api-schema/${SENTRY_API_SCHEMA_SHA}/openapi-derefed.json`
+ `https://raw.githubusercontent.com/getsentry/sentry-api-schema/${SENTRY_API_SCHEMA_SHA}/openapi-derefed.json`,
30
+ {
31
+ // this request is not getting cached due to size limit anyway and is printing noise to the build logs
32
+ cache: 'no-store',
33
+ }
34
);
35
return await response.json();
36
0 commit comments