mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
fix(vue-app): reload page once after loading chunk error (#8978)
This commit is contained in:
parent
248a5c85a9
commit
3fb9194416
@ -146,7 +146,29 @@ export function resolveRouteComponents (route, fn) {
|
|||||||
flatMapComponents(route, async (Component, instance, match, key) => {
|
flatMapComponents(route, async (Component, instance, match, key) => {
|
||||||
// If component is a function, resolve it
|
// If component is a function, resolve it
|
||||||
if (typeof Component === 'function' && !Component.options) {
|
if (typeof Component === 'function' && !Component.options) {
|
||||||
Component = await Component()
|
try {
|
||||||
|
Component = await Component()
|
||||||
|
} catch (error) {
|
||||||
|
// Handle webpack chunk loading errors
|
||||||
|
// This may be due to a new deployment or a network problem
|
||||||
|
if (
|
||||||
|
error &&
|
||||||
|
error.name === 'ChunkLoadError' &&
|
||||||
|
typeof window !== 'undefined' &&
|
||||||
|
window.sessionStorage
|
||||||
|
) {
|
||||||
|
const timeNow = Date.now()
|
||||||
|
const previousReloadTime = parseInt(window.sessionStorage.getItem('nuxt-reload'))
|
||||||
|
|
||||||
|
// check for previous reload time not to reload infinitely
|
||||||
|
if (!previousReloadTime || previousReloadTime + 60000 < timeNow) {
|
||||||
|
window.sessionStorage.setItem('nuxt-reload', timeNow)
|
||||||
|
window.location.reload(true /* skip cache */)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw error
|
||||||
|
}
|
||||||
}
|
}
|
||||||
match.components[key] = Component = sanitizeComponent(Component)
|
match.components[key] = Component = sanitizeComponent(Component)
|
||||||
return typeof fn === 'function' ? fn(Component, instance, match, key) : Component
|
return typeof fn === 'function' ? fn(Component, instance, match, key) : Component
|
||||||
|
Loading…
Reference in New Issue
Block a user