nextjs,tailwindcss,vercel

[NextJS 빌드 에러] Error: `"` can be escaped with `"`, `“`, `"`, `”

주영 🐱 2024. 6. 10. 11:01
728x90
반응형

 

로컬에서는 안나는데 vercel에 빌드할때 나는 에러

Error: `"` can be escaped with `"`, `“`, `"`, `” 

 

 .eslintrc.json 에 아래 코드를 삽입하면 된다. 

"rules": {
    "react/no-unescaped-entities": 0 
 },

"rules": {
    "react/no-unescaped-entities": 0 
 },

 

전체 eslinttrc.json

 

{
  "rules": {
    "react/no-unescaped-entities": 0 
 },
  "extends": "next/core-web-vitals"
}

반응형