2026-01-09 11:58:08 +08:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
typescript: {
|
|
|
|
|
ignoreBuildErrors: true,
|
|
|
|
|
},
|
2026-01-21 15:49:12 +08:00
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
2026-01-09 11:58:08 +08:00
|
|
|
images: {
|
|
|
|
|
unoptimized: true,
|
|
|
|
|
},
|
2026-01-14 12:50:00 +08:00
|
|
|
output: 'standalone',
|
2026-01-21 15:49:12 +08:00
|
|
|
// 抑制开发环境下的错误遮罩
|
|
|
|
|
devIndicators: {
|
|
|
|
|
buildActivity: false,
|
|
|
|
|
appIsrStatus: false,
|
|
|
|
|
},
|
2026-01-09 11:58:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default nextConfig
|