Is there any way to change the Nuxt js auth cookies name?
I know you can change the prefix of the cookie.
do I need to extend the current schema and override methods?
This one should work fine IMO nuxt.config.js
nuxt.config.js
auth: { strategies: { local: { token: { property: 'my_cool_token', }, }, }, },