I had the same issue with next.js what. I did was to openopened the .eslintrc.json and addadded the following:
{ "rules": { "react/no-unescaped-entities": 0 } } Now my .eslintrc.json will look as follows:
{ "extends": "next/core-web-vitals", "rules": { "react/no-unescaped-entities": 0 } }