12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
/* eslint-disable no-undef */
|
|
module.exports = {
|
|
client: {
|
|
excludes: ['**/graphql/**/schema.graphql'],
|
|
includes: ['**/app/**/*', '**/graphql/**/query.graphql'],
|
|
service: {
|
|
name: 'strapi',
|
|
url: 'http://localhost:1337/graphql',
|
|
},
|
|
},
|
|
};
|