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 23c778a commit 4b1a326Copy full SHA for 4b1a326
1 file changed
modules/runtime/server/cache.ts
@@ -714,7 +714,7 @@ export default defineNitroPlugin(nitroApp => {
714
const urlStr =
715
typeof input === 'string' ? input : input instanceof URL ? input.toString() : input.url
716
717
- if (urlStr.startsWith('/')) {
+ if (urlStr.startsWith('/') || urlStr.includes('woff')) {
718
return await originalFetch(input, init)
719
}
720
0 commit comments