How to set custom header on @nuxtjs/apollo?
on my nuxt.config.js
I have something like this
apollo: {
"x-token": "hash",
"x-auth-token": "hash",
"x-refresh-token": "hash",
headers: {
},
clientConfigs: {
default: {
// required
httpEndpoint: "localhost:4000"
}
}
}
Thanks