Skip to content

Commit 009e8da

Browse files
Update vite and storybook version
1 parent 9f0dab0 commit 009e8da

File tree

12 files changed

+2714
-2380
lines changed

12 files changed

+2714
-2380
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ yarn-error.log*
77
pnpm-debug.log*
88
lerna-debug.log*
99

10+
.eslintcache
11+
1012
node_modules
1113
build
1214
storybook-static

.storybook/main.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ import type { StorybookConfig } from '@storybook/react-vite';
22

33
const config: StorybookConfig = {
44
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],
5-
addons: ['@storybook/addon-essentials'],
5+
addons: [
6+
'@storybook/addon-docs',
7+
'storybook/actions',
8+
'storybook/viewport',
9+
'storybook/highlight',
10+
],
611
framework: {
712
name: '@storybook/react-vite',
813
options: {},

.storybook/manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { addons } from '@storybook/manager-api';
1+
import { addons } from 'storybook/manager-api';
22

33
import { customTheme } from './theme';
44

.storybook/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { create } from '@storybook/theming';
1+
import { create } from 'storybook/theming';
22

33
export const customTheme = create({
44
base:

0 commit comments

Comments
 (0)