1
0
Fork 0
mirror of https://gitbruv.vercel.app/api/git/bruv/gitbruv.git synced 2025-12-20 23:24:09 +01:00
gitbruv/next.config.ts
Ahmet Kilinc dffc97239e wip
2025-12-20 03:15:55 +00:00

12 lines
212 B
TypeScript

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