From e66114ce23cb45e6b9b035c4b556075f2eb41607 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Tue, 14 Jul 2026 10:36:14 +0300 Subject: [PATCH] chore: pin turbopack root --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index a395085..b95431b 100644 --- a/next.config.ts +++ b/next.config.ts @@ -21,6 +21,9 @@ const nextConfig: NextConfig = { experimental: { viewTransition: true, }, + turbopack: { + root: __dirname, + }, }; export default nextConfig;