import nextCoreWebVitals from "eslint-config-next/core-web-vitals"; // Flat Config (ESLint 10 unterstützt das alte .eslintrc-Format nicht mehr). // Entspricht dem bisherigen `{ "extends": "next/core-web-vitals" }`. const eslintConfig = [ { ignores: [ ".next/**", "out/**", "build/**", "next-env.d.ts", ], }, ...nextCoreWebVitals, ]; export default eslintConfig;