I recently built my Nuxt application and dockerized it, only to see that for some unknown mystical reason when i am in my login page it auths me without any problems ( this is because its in a compose with the backend) the fact is that it gives me an error:
foxactivity | [Vue Router warn]: No match found for location with path "/auth/login"
Honestly, i don't know from where the path "/auth/login" its coming from, it really does not exist in the whole project,or at least, it has existed before,
To isolate this issue i decided to build it on my local machine, thinking it was a problem with our internal docker registry not updating the frontend image, only to find out this problem persists on my machine too. Its says
No match found for location with path "/auth/login"
i literally searched in the whole project for the string "/auth/login" only to find it in my api calls. (where the endpoint is actually http://foxhelper/api/v1/auth/login so i don't think thats an issue)
If anyone has an idea of whatever this issue could be that would be really appreciated, Thanks!