From b40127c2e8840d77076575c92cdc9276a61d0bfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atakan=20Do=C4=9Fan=20=C3=96zban?= Date: Sat, 8 Aug 2026 16:47:16 +0200 Subject: [PATCH] Exclude integrations/n8n from Next/Docker builds so the app image typechecks cleanly. --- .dockerignore | 1 + tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 0c9f11f..e7f7ca2 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,3 +10,4 @@ uploads deploy-*.tgz scripts bg-video +integrations diff --git a/tsconfig.json b/tsconfig.json index 0625d2f..e343ea8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,5 +19,5 @@ } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules", "website"] + "exclude": ["node_modules", "website", "integrations"] }