From 09a2d42e46fcab596bd26a577b5f7428f84d70c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20R=C3=B6ssner?= Date: Mon, 4 Nov 2024 00:59:43 +1100 Subject: [PATCH] feat: enable reactCompiler --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index ca5132f7..30c0bd23 100644 --- a/next.config.js +++ b/next.config.js @@ -18,6 +18,9 @@ jiti("./src/env.ts"); /** @type {import("next").NextConfig} */ const config = withSerwist({ transpilePackages: ["geist"], + experimental: { + reactCompiler: true, + }, }); export default config;