fix(front): vite fixes after upgrade (everything is esm)

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2024-02-08 11:06:30 +01:00
parent 1acf931ac5
commit b1ecf4b36f
7 changed files with 2 additions and 6 deletions

12
apollo.config.cjs Normal file
View File

@@ -0,0 +1,12 @@
// apollo.config.js
module.exports = {
client: {
service: {
name: "Mobilizon",
// URL to the GraphQL API
localSchemaFile: "./schema.graphql",
},
// Files processed by the extension
includes: ["src/**/*.vue", "src/**/*.js"],
},
};