From 793cce4ae70ad62da27d1e1fe35301481a98ce4f Mon Sep 17 00:00:00 2001 From: jzitnik-dev Date: Thu, 12 Feb 2026 18:17:01 +0100 Subject: [PATCH] chore: Idk --- viewer/next.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/viewer/next.config.ts b/viewer/next.config.ts index 35ad4e6..38db2dc 100644 --- a/viewer/next.config.ts +++ b/viewer/next.config.ts @@ -1,10 +1,11 @@ import type { NextConfig } from "next"; +import path from "path"; const nextConfig: NextConfig = { reactCompiler: true, basePath: '/viewer', turbopack: { - root: __dirname, + root: path.resolve(__dirname, '..'), }, };