Files
oms-website-nextjs/next.config.ts
2025-04-22 08:50:55 +02:00

24 lines
411 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "avatars.githubusercontent.com",
},
{
protocol: "https",
hostname: "storage.cvevolve.com",
},
],
},
experimental: {
serverActions: {
bodySizeLimit: "5mb",
},
},
};
export default nextConfig;