scrape / next.config.ts
kjbytes's picture
push code
ef4c36f
Raw
History Blame Contribute Delete
273 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
serverExternalPackages: ["canvas", "ffmpeg-static", "ffprobe-static", "playwright"],
experimental: {
serverActions: {
bodySizeLimit: "500mb",
},
},
};
export default nextConfig;