add proper status

This commit is contained in:
KM Koushik
2025-09-06 11:39:18 +10:00
parent 69470a4937
commit e00e75c511
3 changed files with 110 additions and 64 deletions

View File

@@ -1,7 +1,7 @@
/** @type {import("next").NextConfig} */
const config = {
// Static export for marketing site
output: "export",
// Use static export in production by default; keep dev server dynamic
output: process.env.NEXT_OUTPUT ?? (process.env.NODE_ENV === "production" ? "export" : undefined),
images: {
// Required for static export if using images
unoptimized: true,
@@ -9,4 +9,3 @@ const config = {
};
export default config;