Is there any way to change the Nuxt js auth cookie name?
I know you can change the cookie prefix.
Do I need to extend the current schema and override methods?
In my opinion, this should work fine nuxt.config.js
nuxt.config.js
auth: { strategies: { local: { token: { property: 'my_cool_token', }, }, }, },
In my opinion, this should work fine
nuxt.config.js