9 lines
224 B
TypeScript
9 lines
224 B
TypeScript
import { type NextConfig } from 'next';
|
|
import { withPayload } from '@payloadcms/next/withPayload';
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
poweredByHeader: false
|
|
};
|
|
|
|
export default withPayload(nextConfig); |