22 lines
401 B
JavaScript
22 lines
401 B
JavaScript
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTs from "eslint-config-next/typescript";
|
|
|
|
export const nextjsConfig = [
|
|
...nextVitals,
|
|
...nextTs,
|
|
{
|
|
ignores: [
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
]
|
|
},
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@next/next/no-img-element": "off"
|
|
}
|
|
}
|
|
];
|