diff --git a/web/next.config.mjs b/web/next.config.mjs index a58219c..ca45e9d 100644 --- a/web/next.config.mjs +++ b/web/next.config.mjs @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ +import path from "path"; +import { fileURLToPath } from "url"; +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + const nextConfig = { output: "standalone", images: { @@ -13,6 +17,9 @@ const nextConfig = { }, ], }, + turbopack: { + root: __dirname, + }, }; export default nextConfig;