Files
falah-mobile/next.config.ts
T

8 lines
174 B
TypeScript
Raw Normal View History

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