next-cochise/next.config.ts

20 lines
384 B
TypeScript
Raw Permalink Normal View History

import { withPayload } from "@payloadcms/next/withPayload";
2025-02-01 06:57:24 +07:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
trailingSlash: true,
2025-02-03 12:53:36 +07:00
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cochiseoncology.com",
},
],
},
experimental: {
streamingMetadata: true,
},
2025-02-01 06:57:24 +07:00
};
export default withPayload(nextConfig);