13 lines
268 B
TypeScript
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;
|