Created empty files & folders for CMS blocks, updated the RootLayout
This commit is contained in:
@ -1,5 +1,20 @@
|
||||
import { withPayload } from "@payloadcms/next/withPayload";
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {};
|
||||
// import { withPayload } from "@payloadcms/next/withPayload";
|
||||
// /** @type {import('next').NextConfig} */
|
||||
// const nextConfig = {};
|
||||
|
||||
export default withPayload(nextConfig);
|
||||
// export default withPayload(nextConfig);
|
||||
|
||||
|
||||
import { withPayload } from '@payloadcms/next/withPayload'
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
// Your Next.js config here
|
||||
experimental: {
|
||||
reactCompiler: false,
|
||||
},
|
||||
}
|
||||
|
||||
// Make sure you wrap your `nextConfig`
|
||||
// with the `withPayload` plugin
|
||||
export default withPayload(nextConfig)
|
||||
Reference in New Issue
Block a user