import type { NextConfig } from 'next'; const nextConfig: NextConfig = { output: 'standalone', experimental: { serverActions: { bodySizeLimit: '2mb', }, }, // Allow mounting OpenClaw config from host serverExternalPackages: ['better-sqlite3'], }; export default nextConfig;