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

๋ฐ˜์‘ํ˜•