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

17 lines
259 B
TypeScript

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