mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
Merge 2a909d9b28 into d436792e77
This commit is contained in:
commit
70599b52cf
1 changed files with 9 additions and 0 deletions
|
|
@ -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,
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue