From 12c7ef46d5760f7d59476211e66964570b1b1c0b Mon Sep 17 00:00:00 2001 From: Anuarbek Zhakhangir Date: Sun, 20 Jul 2025 20:36:50 +0900 Subject: [PATCH] fix: reorder reactStrictMode setting in next.config.ts for clarity --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index e0fb35a..ee37fab 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,8 +2,8 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ - reactStrictMode: true, output: "standalone", + reactStrictMode: true, }; export default nextConfig;