This commit is contained in:
Dhravya Shah 2026-08-27 17:23:32 -07:00 committed by GitHub
commit 70599b52cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,16 @@
import path from "node:path"
import { fileURLToPath } from "node:url"
import { withSentryConfig } from "@sentry/nextjs"
import type { NextConfig } from "next"
const appDir = path.dirname(fileURLToPath(import.meta.url))
const monorepoRoot = path.join(appDir, "../..")
const nextConfig: NextConfig = {
turbopack: {
root: monorepoRoot,
},
outputFileTracingRoot: monorepoRoot,
typescript: {
ignoreBuildErrors: true,
},