File size: 525 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import type { CodegenConfig } from "@graphql-codegen/cli";
import { loadEnvConfig } from "@next/env";
const projectDir = process.cwd();
loadEnvConfig(projectDir);
const config: CodegenConfig = {
overwrite: true,
schema: {
[`${process.env.NEXT_PUBLIC_WORDPRESS_API_URL}/graphql`]: {
headers: {
"User-Agent": "Codegen",
},
},
},
generates: {
"src/gql/": {
preset: "client",
},
"src/gql/schema.gql": {
plugins: ["schema-ast"],
},
},
};
export default config;
|