Skip to content

Commit 77cad41

Browse files
Fixed workflow build
1 parent 32e1598 commit 77cad41

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/deploy-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
SLACK_ICON_EMOJI: ':books:'
6565
SLACK_USERNAME: mx-sdk-dapp-ui
6666
SLACK_TITLE: 'Storybook'
67-
SLACK_MESSAGE: 'Successfully deployed to ${{ secrets.AWS_S3_BUCKET }}'
67+
SLACK_MESSAGE: 'Successfully deployed to: https://${{ secrets.AWS_S3_BUCKET }}'
6868
SLACK_COLOR: 'good'
6969
SLACK_FOOTER: 'Deployed from branch: ${{ github.ref_name }}'
7070
MSG_MINIMAL: false

.storybook/main.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ const config = {
44
framework: {
55
name: '@stencil/storybook-plugin',
66
},
7+
managerHead: (head) => `
8+
${head}
9+
<base href="./" />
10+
`,
11+
previewHead: (head) => `
12+
${head}
13+
<base href="./" />
14+
`,
715
};
816

917
export default config;

0 commit comments

Comments
 (0)