[Vuejs]-Laravel 9 + Passport +Vuejs 401 Unauthorized

0👍

I found the error, I had other axios imports on several other components, it was creating several axios instances, I declared a

const axios = inject(‘axios’)

so I could access just the axios instance that was in use instead of creating several ones.

Leave a comment