refactor(nuxt): update nuxt config

change auth cookie names
This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2024-11-11 17:58:57 -05:00
parent 64acbb60f7
commit 20089dc0cd
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -48,10 +48,12 @@ export default defineNuxtConfig({
signInResponseTokenPointer: "/token/access",
type: "Bearer",
headerName: "Authorization",
maxAgeInSeconds: 14 * 24 * 60 * 60,
maxAgeInSeconds: 15 * 60,
cookieName: "rockfic_cookie",
},
refreshToken: {
signInResponseRefreshTokenPointer: "/token/refresh",
cookieName: "rockfic.refresh",
},
// @ts-ignore
sessionDataType: {} as IUser,