nextload/next.config.mjs
tobias 3a8e66dcec
All checks were successful
continuous-integration/drone/push Build is passing
Revert "Configure nextjs output file tracing"
This reverts commit 63b8c3f5ae.
2024-06-19 21:53:55 +02:00

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)