Files
v2.app.gaertan.art/next.config.ts

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;