13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
/** @type {import('next').Config} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
productionBrowserSourceMaps: false,
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '10mb',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|