Files
2026-04-20 15:49:01 -05:00

14 lines
236 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
reactStrictMode: true,
poweredByHeader: false,
experimental: {
serverActions: {
bodySizeLimit: "50mb",
},
},
};
export default nextConfig;