aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/graphql-codegen.ts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-13 00:52:57 +0900
committernsfisis <nsfisis@gmail.com>2025-07-13 01:09:54 +0900
commit732c71f7c2e5f0a37c03c2efedcfa8e5360e3fda (patch)
tree619d28354e48f55fd5efe9a0298c7d61b6d7393f /frontend/graphql-codegen.ts
parent756b66b31fd02215fc2d8a30ae263a3bf08a90a6 (diff)
downloadfeedaka-732c71f7c2e5f0a37c03c2efedcfa8e5360e3fda.tar.gz
feedaka-732c71f7c2e5f0a37c03c2efedcfa8e5360e3fda.tar.zst
feedaka-732c71f7c2e5f0a37c03c2efedcfa8e5360e3fda.zip
feat(container): fix Docker build
Diffstat (limited to 'frontend/graphql-codegen.ts')
-rw-r--r--frontend/graphql-codegen.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/graphql-codegen.ts b/frontend/graphql-codegen.ts
index af62625..d5339a4 100644
--- a/frontend/graphql-codegen.ts
+++ b/frontend/graphql-codegen.ts
@@ -2,8 +2,8 @@ import type { CodegenConfig } from "@graphql-codegen/cli";
const config: CodegenConfig = {
overwrite: true,
- schema: "../common/graphql/schema.graphql",
- documents: ["src/**/*.tsx", "src/**/*.ts", "src/**/*.graphql"],
+ schema: "src/graphql/schema.graphql",
+ documents: ["src/graphql/*.graphql"],
generates: {
"src/graphql/generated/": {
preset: "client",