/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', experimental: { serverActions: { bodySizeLimit: '2mb', }, }, webpack: (config) => { config.externals.push('pino-pretty', 'lokijs', 'encoding') return config }, } module.exports = nextConfig