Initialize project with Payload CMS
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 11s
Build & Deploy / 🧪 QA (push) Failing after 32s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-02-27 21:01:36 +01:00
parent 9d0442e88f
commit 96cc1b0736
492 changed files with 9690 additions and 113187 deletions

View File

@@ -1,5 +1,6 @@
import type { NextConfig } from "next";
import createMDX from "@next/mdx";
import { withPayload } from "@payloadcms/next/withPayload";
const nextConfig: NextConfig = {
/* config options here */
@@ -11,4 +12,4 @@ const withMDX = createMDX({
});
// Merge MDX config with Next.js config
export default withMDX(nextConfig);
export default withPayload(withMDX(nextConfig));