From e131673f24099737e435def758bd0cf037483428 Mon Sep 17 00:00:00 2001 From: Tim Howitz Date: Sun, 8 Jun 2025 17:41:40 +0100 Subject: [PATCH] Fixed wrong syntax --- next.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 39565e0..7681460 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,7 +1,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - ignoreBuildErrors: true, + typescript: { + ignoreBuildErrors: true, + }, }; export default nextConfig;