ai-comic-generator / next.config.js
zanekwok's picture
init
450060f
raw
history blame contribute delete
207 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: true,
serverActionsBodySizeLimit: '8mb',
},
}
module.exports = nextConfig