Skip to content

Commit

Permalink
fix(vue-wrappers): fix import paths (VIV-000) (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardHelm authored Feb 15, 2024
1 parent 263d1c0 commit 35be420
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/storybook-vue2/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = {
resolve: {
alias: {
'@vonage/vivid': path.resolve(__dirname, '../../../dist/libs/components/index.js'),
'@vonage/vivid-vue': path.resolve(__dirname, '../../../dist/libs/vue-wrappers/index.es.js'),
'@vonage/vivid-vue': path.resolve(__dirname, '../../../dist/libs/vue-wrappers/index.js'),
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion libs/storybook-vue3/.storybook/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config = {
resolve: {
alias: {
'@vonage/vivid': path.resolve(__dirname, '../../../dist/libs/components/index.js'),
'@vonage/vivid-vue': path.resolve(__dirname, '../../../dist/libs/vue-wrappers/index.es.js'),
'@vonage/vivid-vue': path.resolve(__dirname, '../../../dist/libs/vue-wrappers/index.js'),
},
},
});
Expand Down

0 comments on commit 35be420

Please sign in to comment.