Files
v2.app.gaertan.art/next.config.ts
2026-01-28 13:37:18 +01:00

18 lines
295 B
TypeScript

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