4144e9ffd0
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
13 lines
265 B
JavaScript
13 lines
265 B
JavaScript
// apollo.config.js
|
|
module.exports = {
|
|
client: {
|
|
service: {
|
|
name: "Mobilizon",
|
|
// URL to the GraphQL API
|
|
url: "http://localhost:4000/api",
|
|
},
|
|
// Files processed by the extension
|
|
includes: ["src/**/*.vue", "src/**/*.js"],
|
|
},
|
|
};
|