NuxtJS/ Apollo, как установить пользовательский заголовок
Как установить пользовательский заголовок на @nuxtjs/apollo?
on my nuxt.config.js
У меня есть что-то вроде этого
apollo: {
"x-token": "hash",
"x-auth-token": "hash",
"x-refresh-token": "hash",
headers: {
},
clientConfigs: {
default: {
// required
httpEndpoint: "localhost:4000"
}
}
}
Спасибо
1 ответ
Как это:
nuxt.conifg.js
apollo: {
clientConfigs: {
default: {
httpEndpoint: 'localhost:4000',
httpLinkOptions: {
headers: {
'x-token': 'hash',
'x-auth-token': 'hash',
'x-refresh-token': 'hash'
}
}
}
}
},