first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:15:25 +03:00
commit 9eb7aea821
56 changed files with 20630 additions and 0 deletions

13
next.config.ts Normal file
View File

@@ -0,0 +1,13 @@
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;