我想使用@ 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',
}
}
},
}
},
它可以工作,但是我需要我的令牌是动态的。