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 1055bd7f07 update
2025-12-20 12:21:33 +00:00

12 lines
204 B
TypeScript

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