blob: b8c1c1067dfe9e4b051a6eddf01f94009df3aaa8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { CodegenConfig } from "@graphql-codegen/cli";
const config: CodegenConfig = {
schema: "http://localhost:8080/graphql/schema.graphql",
documents: "src/gql/*.ts",
generates: {
"./src/gql/conf/": {
overwrite: true,
preset: "client",
plugins: [],
},
},
};
export default config;
|