storybook에 globalStyle을 적용하는 도중 아래와 같은 에러가 발생했다
Module parse failed: Unexpected token (16:4)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.
.storybook/preview.cjs 파일의 확장자를 jsx로 변경
import { Global } from "@emotion/react";
import globalStyle from "../src/styles/globalStyle"; // globalStyle.ts
export const decorators = [
(Story) => (
<>
<Global styles={globalStyle} />
<Story />
</>
),
];