13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
import { withPayload } from '@payloadcms/next/withPayload'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Your Next.js config here
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
output: 'standalone',
|
|
}
|
|
|
|
export default withPayload(nextConfig, { devBundleServerPackages: false })
|