From db3d5754deae9c01932539160454e2737d976499 Mon Sep 17 00:00:00 2001 From: MarkLo Date: Fri, 21 Nov 2025 21:14:21 +0800 Subject: [PATCH] --- frontend/next.config.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 frontend/next.config.ts diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 00000000..66e15661 --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,8 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ + reactCompiler: true, +}; + +export default nextConfig;