mirror of
https://github.com/DerTyp7/f1r3wave-website.git
synced 2025-10-30 13:37:08 +01:00
12 lines
176 B
TypeScript
12 lines
176 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "10gb",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|