Skip to content

Commit

Permalink
fix(storybook): fix fallback urls
Browse files Browse the repository at this point in the history
  • Loading branch information
masoudmanson committed Feb 8, 2024
1 parent a52bcec commit 08e889a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .storybook/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ module.exports = ({ config }) => {
};

config.resolve.fallback = {
"@czi-sds/components": [
path.resolve(__dirname, "../packages/data-viz/src"),
],
"@czi-sds/components": path.resolve(
__dirname,
"../packages/components/src"
),
"@czi-sds/data-viz": path.resolve(__dirname, "../packages/data-viz/src"),
};

// remove svg from existing rule
Expand Down

0 comments on commit 08e889a

Please sign in to comment.