Skip to content

Commit 2c99639

Browse files
committed
Merge branch 'feature/dev'
2 parents a661611 + a794f1a commit 2c99639

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

.github/workflows/deploy-storybook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
3232
- uses: bitovi/github-actions-storybook-to-github-pages@v1.0.3
3333
with:
34-
install_command: npm install # default: npm ci
34+
install_command: npm install --package-lock-only; npm install # default: npm ci
3535
build_command: npm run storybook:build # default: npm run build-storybook
3636
path: storybook-static # default: dist/storybook
3737
checkout: false # default: true

.storybook/main.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ import path from 'path'
55
const config: StorybookConfig = {
66
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(ts|tsx|js|jsx)'],
77
addons: ['@storybook/addon-essentials', '@storybook/addon-interactions', '@storybook/addon-a11y'],
8-
core: {
9-
builder: {
10-
name: '@storybook/builder-vite',
11-
// 👇 Point to a non-existent file to prevent Storybook from auto-loading your root vite.config
12-
options: { viteConfigPath: '../__ignore_app_vite_config__.js' },
13-
},
14-
},
158
framework: {
169
name: '@storybook/react-vite',
1710
options: {},

0 commit comments

Comments
 (0)