Skip to main content
Active reading. Brevity. Added the missing punctuation.
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

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 } } 

I had the same issue with next.js what I did was to open the .eslintrc.json and add 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 } } 

I had the same issue with next.js. I opened the .eslintrc.json and added 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 } } 
Source Link
crispengari
  • 9.6k
  • 8
  • 59
  • 69

I had the same issue with next.js what I did was to open the .eslintrc.json and add 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 } }