我想使用 @nuxt/apollo 将动态令牌传递给我的 HTTP 请求的标头
我已经尝试过了:
//./nuxt.config.js 阿波罗:{
includeNodeModules: true,
clientConfigs: {
default: {
httpEndpoint: 'http://localhost:8000/graph/',
},
interno: {
httpEndpoint: 'http://localhost:8000/graphiql/',
httpLinkOptions: {
headers:{
Authorization: 'JWT token_static',
}
}
},
}
},
它有效,但我需要我的令牌是动态的。