mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-19 15:10:58 +00:00
fix(nuxt): handle errors loading app manifest (#27441)
This commit is contained in:
parent
7b4f1a8b72
commit
e109d81d40
@ -24,9 +24,13 @@ function fetchManifest () {
|
|||||||
if (!isAppManifestEnabled) {
|
if (!isAppManifestEnabled) {
|
||||||
throw new Error('[nuxt] app manifest should be enabled with `experimental.appManifest`')
|
throw new Error('[nuxt] app manifest should be enabled with `experimental.appManifest`')
|
||||||
}
|
}
|
||||||
manifest = $fetch<NuxtAppManifest>(buildAssetsURL(`builds/meta/${useRuntimeConfig().app.buildId}.json`))
|
manifest = $fetch<NuxtAppManifest>(buildAssetsURL(`builds/meta/${useRuntimeConfig().app.buildId}.json`), {
|
||||||
|
responseType: 'json',
|
||||||
|
})
|
||||||
manifest.then((m) => {
|
manifest.then((m) => {
|
||||||
matcher = createMatcherFromExport(m.matcher)
|
matcher = createMatcherFromExport(m.matcher)
|
||||||
|
}).catch((e) => {
|
||||||
|
console.error('[nuxt] Error fetching app manifest.', e)
|
||||||
})
|
})
|
||||||
return manifest
|
return manifest
|
||||||
}
|
}
|
||||||
@ -48,5 +52,14 @@ export async function getRouteRules (url: string) {
|
|||||||
return defu({} as Record<string, any>, ..._routeRulesMatcher.matchAll(url).reverse())
|
return defu({} as Record<string, any>, ..._routeRulesMatcher.matchAll(url).reverse())
|
||||||
}
|
}
|
||||||
await getAppManifest()
|
await getAppManifest()
|
||||||
return defu({} as Record<string, any>, ...matcher.matchAll(url).reverse())
|
if (!matcher) {
|
||||||
|
console.error('[nuxt] Error creating app manifest matcher.', matcher)
|
||||||
|
return {}
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
return defu({} as Record<string, any>, ...matcher.matchAll(url).reverse())
|
||||||
|
} catch (e) {
|
||||||
|
console.error('[nuxt] Error matching route rules.', e)
|
||||||
|
return {}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user