[Vuejs]-Occurs dead loop in router.beforeEach in vue, vue-router

2👍

Be sure that your logging path does not require auth itself/that your mechanism to detect if a page needs auth is correct.

Keep in mind that your navigation guard function will be called each time a route is reached, including when you are redirecting the user programatically in your navigation guard itself. So you should take that in account to create a function that will not loop (i.e trigger a redirect that trigger a redirect…).

Leave a comment