8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
|
module.exports = {
|
||
|
extends: ["next", "turbo", "prettier"],
|
||
|
rules: {
|
||
|
"@next/next/no-html-link-for-pages": "off",
|
||
|
"react/jsx-key": "off",
|
||
|
},
|
||
|
};
|