Skip to content

Commit e6ed834

Browse files
committed
fix(frontend): update next.config.mjs to not use standalone output
1 parent 1851264 commit e6ed834

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

autogpt_platform/frontend/next.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ const nextConfig = {
3434
},
3535
],
3636
},
37-
output: "standalone",
37+
// Vercel has its own deployment mechanism and doesn't need standalone mode
38+
...(process.env.VERCEL ? {} : { output: "standalone" }),
3839
transpilePackages: ["geist"],
3940
};
4041

0 commit comments

Comments
 (0)