Nuxt/examples/vue-apollo/nuxt.config.js
2017-07-26 11:27:59 +02:00

10 lines
251 B
JavaScript

module.exports = {
build: {
vendor: ['vue-apollo', 'apollo-client']
},
plugins: [
// Will inject the plugin in the $root app and also in the context as `apolloProvider`
{ src: '~plugins/apollo.js', injectAs: 'apolloProvider' }
]
}