We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e1598 commit 77cad41Copy full SHA for 77cad41
.github/workflows/deploy-storybook.yml
@@ -64,7 +64,7 @@ jobs:
64
SLACK_ICON_EMOJI: ':books:'
65
SLACK_USERNAME: mx-sdk-dapp-ui
66
SLACK_TITLE: 'Storybook'
67
- SLACK_MESSAGE: 'Successfully deployed to ${{ secrets.AWS_S3_BUCKET }}'
+ SLACK_MESSAGE: 'Successfully deployed to: https://${{ secrets.AWS_S3_BUCKET }}'
68
SLACK_COLOR: 'good'
69
SLACK_FOOTER: 'Deployed from branch: ${{ github.ref_name }}'
70
MSG_MINIMAL: false
.storybook/main.ts
@@ -4,6 +4,14 @@ const config = {
4
framework: {
5
name: '@stencil/storybook-plugin',
6
},
7
+ managerHead: (head) => `
8
+ ${head}
9
+ <base href="./" />
10
+ `,
11
+ previewHead: (head) => `
12
13
14
15
};
16
17
export default config;
0 commit comments