Files
admin.gaertan.art/next.config.ts
2025-10-29 09:35:46 +01:00

16 lines
234 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
module.exports = {
experimental: {
serverActions: {
bodySizeLimit: '5mb',
},
},
}
export default nextConfig;