Skip to content

Commit

Permalink
fix: use regex to be more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
igarashitm committed Jan 21, 2025
1 parent aa25b5d commit 40a263c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui-tests/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ const config: StorybookConfig = {
resolve: {
alias: [
{
find: '~@patternfly',
replacement: '@patternfly',
find: /~(.*)/,
replacement: '$1',
},
],
},
Expand Down

0 comments on commit 40a263c

Please sign in to comment.