14 lines
279 B
TypeScript
14 lines
279 B
TypeScript
import type { NextConfig } from "next";
|
||
|
||
const nextConfig: NextConfig = {
|
||
allowedDevOrigins: ["127.0.0.1"],
|
||
experimental: {
|
||
serverActions: {
|
||
/** Avatar vb. multipart; varsayılan 1 MB yetmez */
|
||
bodySizeLimit: "5mb",
|
||
},
|
||
},
|
||
};
|
||
|
||
export default nextConfig;
|