felicity-lims/apollo.config.js

16 lines
343 B
JavaScript
Raw Normal View History

module.exports = {
client: {
service: {
name: 'felicity-lims',
// URL to the GraphQL API
url: 'http://localhost:8000/felicity-gql',
},
// Files processed by the extension
includes: [
'src/*.vue',
'src/*.ts',
'src/**/*.vue',
'src/**/*.ts',
],
},
2021-06-12 15:16:30 +08:00
};