14 lines
236 B
TypeScript
14 lines
236 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "50mb",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|