Files
songs2vid/next.config.ts
T

12 lines
185 B
TypeScript

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