10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
const config = {
|
|
extends: ["plugin:@next/next/core-web-vitals"],
|
|
rules: {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"@typescript-eslint/require-await": "off",
|
|
},
|
|
};
|
|
|
|
module.exports = config; |