Files
f1r3wave-website/next.config.ts
2025-10-06 20:30:50 +02:00

13 lines
199 B
TypeScript

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