15 lines
244 B
JavaScript
15 lines
244 B
JavaScript
import nextCoreWebVitals from 'eslint-config-next/core-web-vitals';
|
|
|
|
export default [
|
|
...nextCoreWebVitals,
|
|
{
|
|
ignores: [
|
|
'node_modules/**',
|
|
'.next/**',
|
|
'out/**',
|
|
'build/**',
|
|
'next-env.d.ts',
|
|
],
|
|
},
|
|
];
|