apollo.config.js 256 B

1234567891011121314
  1. module.exports = {
  2. client: {
  3. service: {
  4. name: 'wiki-core',
  5. // URL to the GraphQL API
  6. url: 'http://localhost:11511'
  7. },
  8. // Files processed by the extension
  9. includes: [
  10. 'src/**/*.vue',
  11. 'src/**/*.js'
  12. ]
  13. }
  14. }