16 lines
282 B
JavaScript
16 lines
282 B
JavaScript
module.exports = {
|
|
rules: {
|
|
// Disabled
|
|
|
|
// Unicorn
|
|
|
|
// Canonical
|
|
|
|
// Ignore
|
|
'@next/next/link-passhref': 'off',
|
|
'@next/next/no-script-in-document': 'off',
|
|
'@next/next/no-script-in-head': 'off',
|
|
'@next/next/no-server-import-in-page': 'off',
|
|
},
|
|
};
|