fix: remove curl installation from Dockerfile and adjust reactStrictMode setting in next.config.ts for clarity

This commit is contained in:
2025-07-20 20:46:41 +09:00
parent e5dcb46ef2
commit e2c0d97a65
2 changed files with 1 additions and 6 deletions
+1 -1
View File
@@ -2,8 +2,8 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
reactStrictMode: true,
output: "standalone",
};
export default nextConfig;