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 96863c7 commit dbbef52Copy full SHA for dbbef52
1 file changed
modules/runtime/server/cache.ts
@@ -863,6 +863,7 @@ export default defineNitroPlugin(nitroApp => {
863
const original$fetch = globalThis.$fetch
864
865
// Override native fetch for esm.sh requests and to inject test fixture responses
866
+ // @ts-expect-error @atcute/tid depends on @atcute/[email protected] which depends on @types/bun causing this type conflict.
867
// they fixed this in @atcute/time-ms@^1.3.0 but the tid package needs an update. Doing a ts-expect-error rather than an override
868
// so we remember to remove this when the tid package updates
869
globalThis.fetch = async (input: URL | RequestInfo, init?: RequestInit): Promise<Response> => {
0 commit comments