mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 17:18:09 +00:00
28 lines
533 B
TypeScript
28 lines
533 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "avatars.githubusercontent.com",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "storage.cvevolve.com",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: process.env.DIRECTUS_API_ENDPOINT!.replace("https://", ""),
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "5mb",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|