mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-01-26 03:14:08 +00:00
- Replace `next lint` with `eslint .` (next lint removed in v16) - Migrate to ESLint flat config format - Fix React 19 purity errors in FeatureImage and TopFade components - Update components for Next.js 16 compatibility
6 lines
152 B
JavaScript
6 lines
152 B
JavaScript
import nextConfig from 'eslint-config-next/core-web-vitals';
|
|
|
|
const eslintConfig = [...nextConfig, { ignores: ['out'] }];
|
|
|
|
export default eslintConfig;
|