b52c2bb1d1
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
// apollo.config.js
|
|
module.exports = {
|
|
client: {
|
|
service: {
|
|
name: "Mobilizon",
|
|
// URL to the GraphQL API
|
|
localSchemaFile: "./schema.graphql",
|
|
},
|
|
// Files processed by the extension
|
|
includes: ["js/src/**/*.vue", "js/src/**/*.js"],
|
|
},
|
|
};
|