Files
chinese-family-tree-2/next.config.mjs
T
freedakgmail 00cfae381b 0.0.2.0
2025-11-23 09:24:14 +08:00

14 lines
328 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
// 指定项目根目录,避免多锁文件警告
// 由于父目录存在其他锁文件,我们明确指定当前项目目录为根目录
}
export default nextConfig