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