CoolFace
Apppublic

WaledRashed24/comics

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
next.config.js13 linesDownload Raw Back to root
1/** @type {import('next').NextConfig} */2const nextConfig = {3  output: 'standalone',4  5  experimental: {6    serverActions: {7      bodySizeLimit: '8mb',8    },9  }10}11 12module.exports = nextConfig13