fix: add output standalone to next.config.ts for Docker build

This commit is contained in:
mstfyldz
2026-08-16 17:26:38 +03:00
parent 25889c3ab9
commit e374fd3639
+1 -1
View File
@@ -1,7 +1,7 @@
import type { NextConfig } from "next"; import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
/* config options here */ output: "standalone",
}; };
export default nextConfig; export default nextConfig;