11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import type { NextConfig } from "next";
|
|
import {withPayload} from "@payloadcms/next/withPayload";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
compress: false,
|
|
};
|
|
|
|
export default withPayload(nextConfig);
|