Files
Lavanderia-Sistema-POS/next.config.ts
2026-04-07 08:54:41 -06:00

15 lines
314 B
TypeScript

import type { NextConfig } from "next";
const useStandaloneOutput = process.env.NEXT_OUTPUT_STANDALONE === "1";
const nextConfig: NextConfig = {
...(useStandaloneOutput ? { output: "standalone" } : {}),
experimental: {
serverActions: {
bodySizeLimit: "2mb"
}
}
};
export default nextConfig;