Files
v2.admin.gaertan.art/next.config.ts
2025-12-21 01:06:27 +01:00

16 lines
235 B
TypeScript

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