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 <noreply@anthropic.com>
This commit is contained in:
willchen96 2026-07-25 23:59:06 +08:00
parent cb2306c5d6
commit 4728fd194e

View file

@ -3,6 +3,9 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
turbopack: {
root: __dirname,
},
async rewrites() {
return [
{