18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
output: 'standalone',
|
|
// 抑制开发环境下的错误遮罩
|
|
devIndicators: {
|
|
buildActivity: false,
|
|
appIsrStatus: false,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|