[React] Emotion 사용 시 css 반영 안됨 해결하기
Vite + React + TypeScript로 구성된 프로젝트에서 Emotion을 사용하려 했더니 css 반영이 되지 않는 문제가 발생하였습니다. 개발자도구를 확인해보니, css를 사용한 태그에 다음과 같은 문장이 쓰여 있었습니다. You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop). 찾아보니 babel 설정을 따로 해줘야 한다는 말이 있었고,다음과 같이 설정..