Files
diplomarbeitsportal/next.config.mjs
Dominik Natter e645b7eabb fix: deployment
2025-03-31 14:07:57 +02:00

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 })