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