mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 18:13:54 +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' }
|
||
|
]
|
||
|
}
|