15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
|
|
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;
|