Ocelot-Social/plugins/apollo-config.js
2018-10-29 23:39:09 +01:00

14 lines
317 B
JavaScript

export default function({ app }) {
const backendUrl = app.$env.BACKEND_URL || 'http://localhost:4000'
return {
httpEndpoint: backendUrl,
httpLinkOptions: {
credentials: 'same-origin'
},
credentials: true,
tokenName: 'apollo-token',
persisting: false,
websocketsOnly: false
}
}