Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Console
- 백준
- 기본수학1단계
- scss
- 니모닉
- bip39
- three.js
- 코딩
- 지갑
- 우선순위 큐
- SASS
- baekjoon
- Mnemonic
- 프로그래밍
- 스토리북
- algorithm
- Storybook
- 기본 수학 2단계
- 블록체인
- 리액트
- priority queue
- React
- 에러
- TypeScript
- 알고리즘
- SVG
- frontend
- C++
- 풀이
- Blockchain
Archives
- Today
- Total
Moong
[React+Typescript] Storybook에 sass 설정하기(sass 에러 나는 경우) 본문
storybook에서 sass 파일을 불러올 때 에러가 나는 경우
추가적인 설정을 해주어야 합니다!
1. 라이브러리 설치 (storybook/addon-styling, sass)
@storybook/addon-styling 와 sass를 설치합니다.
# yarn
yarn add -D @storybook/addon-styling sass
# npm
npm install -D @storybook/addon-styling sass
2. main.ts addons에 sass 추가하기
.storybook > main.ts
addons에 sass를 추가해주면 됩니다.
// main.ts
import type { StorybookConfig } from "@storybook/react-webpack5";
const config: StorybookConfig = {
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
addons: [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/addon-interactions",
/* 해당 부분 추가 - sass 관련 설정 */
{
name: '@storybook/addon-styling',
options: {
sass: {
// Require your Sass preprocessor here
implementation: require('sass'),
},
},
},
],
framework: {
name: "@storybook/react-webpack5",
options: {},
},
docs: {
autodocs: "tag",
},
};
export default config;
➕ Global SASS 추가하기
.storybook > preview.tsx
preview에 scss 파일을 import 해주면 전역으로 해당 스타일이 적용됩니다!
// preview.tsx
import React from "react";
import type { Preview } from "@storybook/react";
import 'reflect-metadata';
// global style
import '../src/style/init.scss';
import '../src/style/font.scss';
import '../src/style/animation.scss';
const preview: Preview = {
parameters: {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
}
}
};
export default preview;
SASS 적용 성공! 🙌
'React' 카테고리의 다른 글
[React+Typescript] Storybook 자동화 배포하기 - Chromatic, Git Action CI (0) | 2023.05.05 |
---|---|
[React+Typescript] Storybook에 라우터(react-router-dom) 설정하기 (0) | 2023.05.04 |
[React+Typescript] Storybook에 Redux 설정하는 법 - could not found react-redux context value 에러 해결 (0) | 2023.05.03 |
[React+Typescript] Storybook 에러 해결법 - element type is invalid (0) | 2023.05.03 |
[React+Typescript] Storybook 도입하기 (0) | 2023.05.03 |
Comments