main
mjs 10 lines 186 Bytes
Raw
1 import nextVitals from "eslint-config-next/core-web-vitals";
2
3 const eslintConfig = [
4 ...nextVitals,
5 {
6 ignores: [".next/**", "next-env.d.ts"]
7 }
8 ];
9
10 export default eslintConfig;