| import type { NextConfig } from "next"; | |
| const nextConfig: NextConfig = { | |
| serverExternalPackages: ["canvas", "ffmpeg-static", "ffprobe-static", "playwright"], | |
| experimental: { | |
| serverActions: { | |
| bodySizeLimit: "500mb", | |
| }, | |
| }, | |
| }; | |
| export default nextConfig; | |