import type { NextConfig } from "next"; const nextConfig: NextConfig = { basePath: "/adv", typescript: { ignoreBuildErrors: true, }, experimental: { serverActions: { bodySizeLimit: '50mb', }, proxyClientMaxBodySize: '50mb', }, }; export default nextConfig;