ai-stories-factory / next.config.js
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit 🤳
6da9beb
raw
history blame
No virus
195 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: {
bodySizeLimit: '16mb'
}
}
}
module.exports = nextConfig