import { withPayload } from '@payloadcms/next/withPayload' /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, outputFileTracingRoot: new URL('.', import.meta.url).pathname, images: { remotePatterns: [ { protocol: 'https', hostname: 'cdn.sanity.io' }, { protocol: 'https', hostname: 'rebours.studio' }, ], }, } export default withPayload(nextConfig, { devBundleServerPackages: false })