From 10572ca962081961fb63b3ad9f164c610edf35e4 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Fri, 5 Dec 2025 19:10:23 +0100 Subject: [PATCH] fix: disable react-compiler due to issue with mantine-react-table data updates (#4593) --- apps/nextjs/next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/nextjs/next.config.ts b/apps/nextjs/next.config.ts index bef2e91cf..7b9bcb915 100644 --- a/apps/nextjs/next.config.ts +++ b/apps/nextjs/next.config.ts @@ -20,7 +20,8 @@ const withNextIntl = createNextIntlPlugin({ const nextConfig: NextConfig = { output: "standalone", reactStrictMode: true, - reactCompiler: true, + // react compiler breaks mantine-react-table, so disabled for now + //reactCompiler: true, /** We already do typechecking as separate tasks in CI */ typescript: { ignoreBuildErrors: true }, /**