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