eslint
当在您的项目中检测到 ESLint 时,如果存在错误,Next.js 会使您的**生产构建**(next build
)失败。
如果您希望 Next.js 即使应用程序存在 ESLint 错误也能生成生产代码,您可以完全禁用内置的 lint 步骤。除非您已将 ESLint 配置为在工作流程的其他部分运行(例如,在 CI 或预提交钩子中),否则不建议这样做。
打开 next.config.js
并在 eslint
配置中启用 ignoreDuringBuilds
选项
next.config.js
module.exports = {
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
}
这有帮助吗?