This commit is contained in:
2024-06-26 22:13:34 +02:00
parent ad650b610d
commit 698b347ccb
35 changed files with 11002 additions and 0 deletions

11
api/next.config.mjs Normal file
View File

@@ -0,0 +1,11 @@
import { withPayload } from '@payloadcms/next/withPayload'
/** @type {import('next').NextConfig} */
const nextConfig = {
// Your Next.js config here
experimental: {
reactCompiler: false
}
}
export default withPayload(nextConfig)