We are currently in the process of moving an internal site from Vue 2 to Vue 3 and are likely using Nuxt as the final destination.
I'm currently looking at how the Nuxt application will communicate with the existing API server (Hapi.js), and more importantly how that server will authenticate requests once users have been authenticated on the frontend
I am at the point where
nuxt-auth-utils
nuxt-auth-utils
is retrieving an authenticated user and displaying the
{ user }
{ user }
details on the front-end using
useUserSession
useUserSession
I can also confirm that the backend
auth
auth
route is receiving a Bearer token from the Microsoft server.