21 lines
392 B
TypeScript
21 lines
392 B
TypeScript
import { withPayload } from "@payloadcms/next/withPayload";
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "http",
|
|
hostname: "localhost",
|
|
},
|
|
{
|
|
protocol: "http",
|
|
hostname: "minio",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withPayload(nextConfig);
|