@storybook/builder-vite 8.3.0-alpha.4 → 8.3.0-alpha.6

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 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'; // (or whatever framework you are using)
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...,
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { UserConfig, InlineConfig, PluginOption } from 'vite';
2
1
  import { Builder, Options } from 'storybook/internal/types';
2
+ import { UserConfig, InlineConfig, PluginOption } from 'vite';
3
3
 
4
4
  type ViteStats = {
5
5
  toJson: () => any;