14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
import { fileURLToPath } from 'node:url';
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '2mb'
|
|
}
|
|
},
|
|
output: 'standalone'
|
|
};
|
|
|
|
export default nextConfig;
|