17 lines
377 B
TypeScript
17 lines
377 B
TypeScript
import type { NextConfig } from "next";
|
|
import withPayload from "@payloadcms/next/withPayload";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
new URL("http://localhost:3000/**"),
|
|
new URL("https://inzight.co.nz/**"),
|
|
],
|
|
},
|
|
compress: false,
|
|
};
|
|
|
|
export default withPayload(nextConfig);
|