import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ }; module.exports = { experimental: { serverActions: { bodySizeLimit: '100mb', }, }, images: { contentDispositionType: 'inline', }, } export default nextConfig;