반응형
✔️ 필요성
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"],
...
}
}
반응형
'프론트엔드 웹 > Next' 카테고리의 다른 글
Next.js에서 페이지 스크롤 가장 위로 고정하기 (0) | 2022.02.11 |
---|---|
[에러해결] Next.js에서 gsap scrollTrigger쓸 때 Unexpected token 'export' (0) | 2022.02.09 |
Next.js에서 <Link/> 사용하고 classNames로 꾸미기 (0) | 2022.01.27 |
Next.js 프로젝트에서 sass/scss 사용하기 (0) | 2022.01.26 |
Next.js에서 svg import 하기 (#babel-plugin-inline-react-svg) (0) | 2022.01.12 |