feature: create post

This commit is contained in:
libertyoms
2025-04-22 08:50:55 +02:00
parent a8c6b5297b
commit 43f867cfe4
8 changed files with 518 additions and 12 deletions

View File

@ -2,14 +2,20 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
domains: ["avatars.githubusercontent.com", "storage.cvevolve.com"],
},
serverActions: {
bodySizeLimit: "10mb", // Increase limit (e.g., to 10MB) - adjust as needed
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "storage.cvevolve.com",
},
],
},
experimental: {
serverActions: {
bodySizeLimit: "2mb",
bodySizeLimit: "5mb",
},
},
};