import type { NextConfig } from "next"; const nextConfig: NextConfig = { turbopack: { // 避免 monorepo/多 lockfile 场景下 root 误判,减少构建与热更新的不确定性 root: __dirname, }, }; export default nextConfig;