절대경로 인식 못 함
- tsconfig.json에서 설정한 절대경로를 인식하지 못 함
{
"compilerOptions": {
// ...
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"]
}
절대 경로 이슈 해결
npm install -D tsconfig-paths-webpack-plugin
module.exports = {
webpackFinal: async (config) => ({
...config,
resolve: {
...config.resolve,
...config.resolve.plugins.push(new TsconfigPathsPlugin({})),
},
}),
};
App.tsx에서 가져온 공통 css는 적용되지 않음
- 각 컴포넌트에서 독립적으로 css를 import해야 storybook에 올바르게 표시 됨
- preview.js에서 import하면 모든 story에 적용되므로 공통 css는 여기에서 import하면 된다