import type { NextConfig } from "next"; import path from "path"; const nextConfig: NextConfig = { // Silence the "multiple lockfiles" warning — this project lives inside a // larger monorepo and has its own lockfile by design. outputFileTracingRoot: path.join(__dirname, "../../"), }; export default nextConfig;