You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auth: {globalMiddleware: true,redirectStrategy: 'query',// Important! Otherwise, there will be an infinite logout loop.stores: {cookie: {options: {secure: import.meta.env.NODE_ENV==='production',// Enable in production only.sameSite: 'lax',// IMPORTANT!},},},redirect: {login: '/#',logout: '/#',callback: '/#',home: '/write',},strategies: {local: {scheme: 'refresh',token: {property: 'access',type: 'JWT',},refreshToken: {property: 'refresh',data: 'refresh',// This is not a JWT token!},user: {property: false,},endpoints: {login: {url: `${import.meta.env.API_URL}/auth/token/`,method: 'post',},refresh: {url: `${import.meta.env.API_URL}/auth/token/refresh/`,method: 'post',},user: false,logout: {url: `${import.meta.env.API_URL}/user/logout/`,method: 'post',},},},facebook: {clientId: import.meta.env.FACEBOOK_CLIENT_ID,responseType: 'code',endpoints: {token: `${import.meta.env.BACKEND_URL}/auth/social/facebook/`,userInfo: `${import.meta.env.API_URL}/user/`,},token: {// By default the token type is Bearer, but simple_jwt is configured// to accept only JWT tokens.type: 'JWT',},},google: {clientId: import.meta.env.GOOGLE_CLIENT_ID,scope: ['profile','email',],responseType: 'code',codeChallengeMethod: '',// This is important!endpoints: {token: `${import.meta.env.BACKEND_URL}/auth/social/google/`,userInfo: `${import.meta.env.API_URL}/user/`,},token: {// The token type needs to match the AUTH_HEADER_TYPES setting under// SIMPLE_JWT in the Django settings (Bearer by default).type: 'JWT',property: 'access',},refreshToken: {// The refresh token is not a JWT token!property: 'refresh',},},},},
Reproduction
Can't reproduce.
Describe the bug
I'm getting a lot of these errors, should there be a check if endpoint is undefined?
Additional context
No response
Logs
No response
The text was updated successfully, but these errors were encountered:
Environment
Darwin
v21.5.0
3.9.3
3.10.0
2.8.1
pnpm@8.14.3
-
ssr
,runtimeConfig
,modules
,imports
,experimental
,app
,pwa
,sourcemap
,devtools
,router
,css
,postcss
,vite
,nitro
,typescript
,http
,auth
,colorMode
,plausible
@nuxt/devtools@1.0.8
,@kevinmarrec/nuxt-pwa@0.17.0
,normalizedModule()
,@nuxt-alt/auth@3.1.6
,@nuxt-alt/http@1.7.10
,@nuxtjs/color-mode@3.3.2
,@nuxtjs/plausible@0.2.4
,@vueuse/nuxt@10.7.2
,nuxt-icon@0.6.8
,v-wave/nuxt
-
Nuxt Config
Reproduction
Can't reproduce.
Describe the bug
I'm getting a lot of these errors, should there be a check if endpoint is
undefined
?Additional context
No response
Logs
No response
The text was updated successfully, but these errors were encountered: