illustrateur-cloud / next.config.js
jbilcke-hf's picture
jbilcke-hf HF staff
use stable cascade
4905b6b
raw
history blame contribute delete
195 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: {
bodySizeLimit: '10mb'
}
}
}
module.exports = nextConfig