20 lines
384 B
TypeScript
20 lines
384 B
TypeScript
import { withPayload } from "@payloadcms/next/withPayload";
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
trailingSlash: true,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "cochiseoncology.com",
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
streamingMetadata: true,
|
|
},
|
|
};
|
|
|
|
export default withPayload(nextConfig);
|