DEV Community

Discussion on: Using emotionJs with Vite

Collapse
 
glocore profile image
glocore

I faced the same issue, adding this to tsconfig.json fixed it for me:

"compilerOptions": {
  "types": ["vite/client", "@emotion/react/types/css-prop"]
}
Enter fullscreen mode Exit fullscreen mode