Exclude integrations/n8n from Next/Docker builds so the app image typechecks cleanly.

This commit is contained in:
Atakan Doğan Özban
2026-08-08 16:47:16 +02:00
parent f9b2a997a2
commit b40127c2e8
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -10,3 +10,4 @@ uploads
deploy-*.tgz deploy-*.tgz
scripts scripts
bg-video bg-video
integrations
+1 -1
View File
@@ -19,5 +19,5 @@
} }
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", "website"] "exclude": ["node_modules", "website", "integrations"]
} }