Hello. Now I look at various libraries for authentication via tokens (oauth2 / jwt-auth, etc.), I don’t understand one thing: as far as I know, all data related to security is best stored in httpOnly cookies. The above packages in the response give access token and refresh token . Through js paste httpOnly cookie fails. How to store the access token on the client side?
An application is made without a server part, that is, completely stateless (stateless). Available only API from backend and application on Vue.js. What to do, where to store tokens?