18 lines
413 B
JavaScript
18 lines
413 B
JavaScript
/** @type {import('next').NextConfig} */
|
||
const nextConfig = {
|
||
typescript: {
|
||
ignoreBuildErrors: true,
|
||
},
|
||
images: {
|
||
unoptimized: true,
|
||
},
|
||
output: 'standalone', // 部署脚本依赖 standalone 产出 .next/standalone,宝塔用 node server.js 启动
|
||
// 抑制开发环境下的错误遮罩
|
||
devIndicators: {
|
||
buildActivity: false,
|
||
appIsrStatus: false,
|
||
},
|
||
}
|
||
|
||
export default nextConfig
|