Files
soul-yongping/next-project/next.config.mjs
2026-02-09 14:43:35 +08:00

18 lines
413 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @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