Files
nextgo/next.config.ts
Beyhan Oğur 9eb7aea821 first commit
2026-04-26 22:15:25 +03:00

14 lines
279 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;