Skip to content

Commit 2abecb7

Browse files
committed
feat(warn): improve infinite redirect warning message
1 parent fb2bef4 commit 2abecb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/router/src/router.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ export function createRouter(options: RouterOptions): Router {
719719
: 1) > 30
720720
) {
721721
warn(
722-
`Detected a possibly infinite redirection in a navigation guard when going from "${from.fullPath}" to "${toLocation.fullPath}". Aborting to avoid a Stack Overflow. This might break in production if not fixed.`
722+
`Detected a possibly infinite redirection in a navigation guard when going from "${from.fullPath}" to "${toLocation.fullPath}". Aborting to avoid a Stack Overflow.\n Are you always returning a new location within a navigation guard? That would lead to this error. Only return when redirecting or aborting, that should fix this. This might break in production if not fixed.`
723723
)
724724
return Promise.reject(
725725
new Error('Infinite redirect in navigation guard')

0 commit comments

Comments
 (0)