프론트엔드 웹/Next

[에러해결] Next.js에서 Emotion 쓸 때 css 속성이 없습니다

세리둥절 2022. 2. 8. 17:10
반응형

 

✔️ 필요성

Next.js에서 Emotion을 쓸 때 css를 쓰고 싶은 데 css 속성이 없다고 나온다

 

아래와 같이 사용중!

import styled from "@emotion/styled";
import React from "react";
import { css } from "@emotion/css";

 

 

✔️ tsconfig.json 수정

tsconfig.json 파일을 열로 아래와 같이 types 를 추가해주면 된다!

{
  "compilerOptions": {
    "types": ["@emotion/react/types/css-prop"],
    ...
  }
}

 

 

 

반응형