Files
caddy-proxy-manager/next.config.mjs
2025-10-31 20:08:28 +01:00

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;