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 ac6926b55c test
2025-12-20 13:29:48 +00:00

12 lines
206 B
TypeScript

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