HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🐣
프론트엔드 데브코스 3기 교육생
/
🎀
동영팀
/
뽀모 프로젝트
뽀모 프로젝트
/
💥
issue
/
[순요] style-components: jsx, css props issue with typescript (1)

[순요] style-components: jsx, css props issue with typescript (1)

Tags
Created by
Created
Jan 16, 2023 03:44 PM
 

배경

  • @emotion/react 에서 css를 import 해서 쓰려고 하는데 계속 타입스크립트 에러로 잡힌다.
 
notion image
 

해결

  • babel preset 설정을 하거나 JSX Pragma를 설정해줘야 한다.
https://emotion.sh/docs/css-prop#jsx-pragma
 
 
  • 공식 문서 대로 /** @jsx jsx */ 로 Pragma 설정해도 아래와 같이 오류가 나타날 수 있다.
Error: x pragma cannot be set when runtime is automatic
→ /** @jsxImportSource @emotion/react */ 로 설정해볼 것
 
/** @jsxImportSource @emotion/react */
 

참고

https://tech.osci.kr/2022/06/14/웹-애플리케이션에-스타일-추가하기-with-emotion/