NuxtJS / Apollo, как установить пользовательский заголовок - PullRequest
0 голосов
/ 13 ноября 2018

Как установить пользовательский заголовок на @ 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 Ответ

0 голосов
/ 13 ноября 2018

Как это:

nuxt.conifg.js

apollo: {
  clientConfigs: {
    default: {
      httpEndpoint: 'localhost:4000',
      httpLinkOptions: {
        headers: {
           'x-token': 'hash',
           'x-auth-token': 'hash',
           'x-refresh-token':  'hash'
        }
      }
    }
  }
},
...