|
|
|
|
|
by gitgud
1157 days ago
|
|
Yeah the "next/image" has always bothered me, I suspect it's a huge revenue stream for them My advice is to just turn off the linting errors by adding this rule to ".eslintrc.json", like this: {
"rules": {
// Other rules
"@next/next/no-img-element": "off"
}
}
|
|