Spaces:
Running
Running
File size: 380 Bytes
1f122c3 3d4392e 1f122c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: {
// necessary as we are generating Clap files on server-side
// however, we are only generating text and not assets, so it should be lightweight,
// usually below 2mb
bodySizeLimit: '4mb',
},
}
}
module.exports = nextConfig
|