import { withPayload } from "@payloadcms/next/withPayload"; import type { NextConfig } from "next"; import path from "node:path"; const nextConfig: NextConfig = { output: "standalone", reactStrictMode: true, turbopack: { root: path.resolve("."), }, images: { remotePatterns: [ { protocol: "https", hostname: "jasonwoltje.com", }, ], }, }; export default withPayload(nextConfig, { devBundleServerPackages: false });