Files
memohanzi/next.config.ts
2025-11-21 09:51:16 +01:00

13 lines
208 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
experimental: {
serverActions: {
bodySizeLimit: "2mb",
},
},
};
export default nextConfig;