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 2a92cf6f0a fix
2025-12-20 13:51:39 +00:00

12 lines
204 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
useCache: true,
serverActions: {
bodySizeLimit: "2mb",
},
},
};
export default nextConfig;