mirror of
https://github.com/2930134478/AI-CS.git
synced 2026-06-15 08:45:41 +08:00
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
// Next.js 16 ESLint 配置
|
|
// 简化配置,避免 FlatCompat 的循环引用问题
|
|
// 只定义忽略规则,让 Next.js 在构建时处理其他规则
|
|
|
|
export default [
|
|
{
|
|
ignores: [
|
|
"node_modules/**",
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
"*.config.*",
|
|
"dist/**",
|
|
],
|
|
},
|
|
];
|