advdoors/apps/web/next.config.ts
Снесарев Максим a240d523e1 init
2026-04-01 22:34:50 +03:00

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);