Files
mnote/wolai-frontend/next.config.ts
T
2026-01-10 10:35:21 +08:00

11 lines
246 B
TypeScript

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