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