mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
16 lines
342 B
JavaScript
16 lines
342 B
JavaScript
|
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',
|
||
|
],
|
||
|
},
|
||
|
}
|