fix(frontend): update next.config.mjs to not use standalone output

This commit is contained in:
Lluis Agusti
2025-11-26 19:13:33 +07:00
parent 1851264a6a
commit e6ed83462d

View File

@@ -34,7 +34,8 @@ const nextConfig = {
},
],
},
output: "standalone",
// Vercel has its own deployment mechanism and doesn't need standalone mode
...(process.env.VERCEL ? {} : { output: "standalone" }),
transpilePackages: ["geist"],
};