2026-02-06 23:01:30 -05:00

13 lines
268 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
transpilePackages: ['@mcpengine/ui', '@mcpengine/db', '@mcpengine/ai-pipeline'],
experimental: {
serverActions: {
bodySizeLimit: '10mb',
},
},
};
export default nextConfig;