3a8e66dcec
All checks were successful
continuous-integration/drone/push Build is passing
This reverts commit 63b8c3f5ae
.
18 lines
372 B
JavaScript
18 lines
372 B
JavaScript
import { withPayload } from '@payloadcms/next/withPayload'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Your Next.js config here
|
|
experimental: {
|
|
reactCompiler: false,
|
|
},
|
|
output: 'standalone',
|
|
env: {
|
|
customKey: 'my-value',
|
|
PORT: process.env.PORT,
|
|
HOSTNAME: process.env.HOSTNAME,
|
|
},
|
|
}
|
|
|
|
export default withPayload(nextConfig)
|