nextjs emotion 적용시 에러 => tsconfig 설정 추가 후 해결
import { css } from "@emotion/react";
[...]
<div
css={css`
padding: 32px;
background-color: hotpink;
font-size: 24px;
border-radius: 4px;
`}
>
[...]
//tsconfig.json
{
"compilerOptions": {
[...]
"types": ["@emotion/react/types/css-prop"], //
"paths": {
"@/*": ["./src/*"]
}
},
[...]
}