Files
ai-toy-patent-workflow/next.config.mjs

7 lines
225 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: { serverActions: { bodySizeLimit: '20mb' } },
images: { remotePatterns: [{ protocol: 'https', hostname: '**' }] },
};
export default nextConfig;