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