test100 / next.config.js
Justyn97's picture
Upload 206 files
6454d9a verified
raw
history blame
No virus
207 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
experimental: {
serverActions: true,
serverActionsBodySizeLimit: '8mb',
},
}
module.exports = nextConfig