@storybook/builder-vite 8.3.0-alpha.3 → 8.3.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +15 -15
- package/dist/index.mjs +29 -30
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -117,7 +117,9 @@ The function should return the updated Vite configuration.
|
|
|
117
117
|
Configure your `.storybook/main.ts` to use TypeScript:
|
|
118
118
|
|
|
119
119
|
```typescript
|
|
120
|
-
import type { StorybookConfig } from '@storybook/react-vite';
|
|
120
|
+
import type { StorybookConfig } from '@storybook/react-vite';
|
|
121
|
+
|
|
122
|
+
// (or whatever framework you are using)
|
|
121
123
|
|
|
122
124
|
const config: StorybookConfig = {
|
|
123
125
|
// other storybook options...,
|