最新のfeathers-authentication-clientとfeathers-authentication-localを持つクッキーにjwtトークンを保存する適切な方法は何ですか?feathers-authentication-localでログインしてjwtをCookieに保存する適切な方法は何ですか?
ドキュメントが見つかりませんでした。次のコードでlocalStorageで動作するように管理されていますが、feathers-authenticaion-oauth2のようにクッキー内に格納することをお勧めします。
const host = 'http://localhost:3030';
export const app = feathers()
.configure(rest(host).superagent(superagent))
.configure(feathers.hooks())
.configure(auth({
storage: localStorage,
type: 'jwt',
}));
おかげ