felicity-lims/frontend/vite/apollo.config.js

16 lines
342 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',
],
},
}