mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
module.exports = {
|
|
build: {
|
|
vendor: ['vue-apollo', 'apollo-client']
|
|
},
|
|
router: {
|
|
middleware: 'apollo'
|
|
},
|
|
plugins: [
|
|
// Will inject the plugin in the $root app and also in the context as `i18n`
|
|
{ src: '~plugins/apollo.js', injectAs: 'apolloProvider' }
|
|
]
|
|
}
|