storybook 절대 경로 지정 방법

Yunseong2·2021년 8월 10일
1

.storybook/webpack.config.js

const path = require("path");

module.exports = ({ config }) => {
  config.resolve.alias = {
    ...config.resolve.alias,
    "@": path.resolve(__dirname, "../src"),
  };

  return config;
};

0개의 댓글