Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@nuxtjs/mdc": "0.20.2",
"better-sqlite3": "12.8.0",
"docus": "5.8.1",
"nuxt": "4.4.2",
"nuxt": "4.4.4",
"tailwindcss": "4.2.2"
}
}
3 changes: 3 additions & 0 deletions modules/runtime/server/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,9 @@ export default defineNitroPlugin(nitroApp => {
const original$fetch = globalThis.$fetch

// Override native fetch for esm.sh requests and to inject test fixture responses
// @ts-expect-error @atcute/tid depends on @atcute/time-ms@1.2.2 which depends on @types/bun causing this type conflict.
// 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
// so we remember to remove this when the tid package updates
globalThis.fetch = async (input: URL | RequestInfo, init?: RequestInit): Promise<Response> => {
const urlStr =
typeof input === 'string' ? input : input instanceof URL ? input.toString() : input.url
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"ipaddr.js": "2.3.0",
"marked": "18.0.0",
"module-replacements": "3.0.0-beta.7",
"nuxt": "4.4.2",
"nuxt": "4.4.4",
"nuxt-og-image": "^6.4.3",
"ofetch": "1.5.1",
"ohash": "2.0.11",
Expand Down
Loading
Loading