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?
P粉4019012662024-03-28 16:51:52
In my opinion, this should work fine
nuxt.config.js
auth: { strategies: { local: { token: { property: 'my_cool_token', }, }, }, },