Files
neta/next.config.ts
T

13 lines
208 B
TypeScript

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