fix: ignore build errors and trust hosts

This commit is contained in:
Dominik Natter
2025-03-27 23:41:04 +01:00
parent 385580f4ee
commit 9663317a4e
2 changed files with 4 additions and 0 deletions

View File

@@ -3,6 +3,9 @@ import { withPayload } from '@payloadcms/next/withPayload'
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
// Your Next.js config here // Your Next.js config here
typescript: {
ignoreBuildErrors: true,
},
} }
export default withPayload(nextConfig, { devBundleServerPackages: false }) export default withPayload(nextConfig, { devBundleServerPackages: false })

View File

@@ -13,4 +13,5 @@ export const authConfig: NextAuthConfig = {
}), }),
github, github,
], ],
trustHost: true,
}; };