2026-06-15 08:05:51 +01:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-07-02 20:01:48 +08:00
|
|
|
output: process.env.NETLIFY === "true" ? undefined : "standalone",
|
2026-06-15 08:05:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|