From 4728fd194e5856f710e769b7761542cad32aa7a3 Mon Sep 17 00:00:00 2001 From: willchen96 Date: Sat, 25 Jul 2026 23:59:06 +0800 Subject: [PATCH] chore(frontend): pin turbopack.root to silence multi-lockfile warning The repo has lockfiles at the root (Playwright harness) and in frontend/, so Next.js guesses the workspace root and warns on every dev-server start. Pin it explicitly. Co-Authored-By: Claude Fable 5 --- frontend/next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 84dce26f..14a6e76c 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -3,6 +3,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ reactCompiler: true, + turbopack: { + root: __dirname, + }, async rewrites() { return [ {