ai-stories-factory / next.config.js
jbilcke-hf's picture
jbilcke-hf HF staff
update the API client
9d89208
raw history blame
No virus
251 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: {
// a clap file can be quite large - but that's OK
bodySizeLimit: '32mb'
}
}
}
module.exports = nextConfig