fix: reorder reactStrictMode setting in next.config.ts for clarity

This commit is contained in:
2025-07-20 20:36:50 +09:00
parent 4bf5e36a50
commit 12c7ef46d5
+1 -1
View File
@@ -2,8 +2,8 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ /* config options here */
reactStrictMode: true,
output: "standalone", output: "standalone",
reactStrictMode: true,
}; };
export default nextConfig; export default nextConfig;