ComicGenerator / next.config.js
Killer01's picture
Upload 15 files
e5e7619 verified
raw
history blame contribute delete
No virus
198 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: {
bodySizeLimit: '8mb',
},
}
}
module.exports = nextConfig