Merge pull request #18187 from storybookjs/vite-builder-docs

Update Vite builder docs a bit
This commit is contained in:
jonniebigodes 2022-05-10 22:32:38 +01:00 committed by GitHub
commit db71bc6b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 42 deletions

View File

@ -96,41 +96,27 @@ If you need, you can also configure Storybook's Vite builder using TypeScript. R
## Troubleshooting
### Prebundle errors
Vite automatically restarts and begins the prebundling process if it detects a new dependency. This pattern breaks with Storybook and throws confusing error messages. If you see the following message in your terminal:
```shell
[vite] new dependencies found:
```
Update your `viteFinal` configuration and include the new dependencies as follows:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-vite-builder-error-optimized.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
### Working directory not being detected
By default, the Vite builder enables Vite's [`server.fs.strict`](https://vitejs.dev/config/#server-fs-strict) option for increased security, defining the project's `root` to Storybook's configuration directory
If you need to override it, you can use the `viteFinal` function and adjust it.
### HMR seems flaky
Saving a component story does not initiate a hot module replacement. Instead, a complete reload happens. You can update your component file or save it to see the changes in effect.
### ArgTypes are not generated automatically
Storybooks [automatic argType inference](https://storybook.js.org/docs/react/api/argtypes#automatic-argtype-inference) is currently only available for React TypeScript projects. The builder will include additional framework support in future releases.
Currently, [automatic argType inference](../api/argtypes.md#automatic-argtype-inference) is only available for React and Vue3. With React, the Vite builder defaults to `react-docgen-typescript` if TypeScript is listed as a dependency. If you run into any issues, you can revert to `react-docgen` by updating your Storybook configuration file as follows:
<!-- prettier-ignore-start -->
<CodeSnippets
paths={[
'common/storybook-vite-builder-react-docgen.js.mdx',
]}
/>
<!-- prettier-ignore-end -->
#### Learn more about builders
- Vite builder for bundling with Vite
- [Webpack builder](./webpack.md) for bundling with Webpack
- [Builder API](./builder-api.md) for building a Storybook builder
- [Builder API](./builder-api.md) for building a Storybook builder

View File

@ -4,11 +4,19 @@
import { createServer } from 'vite';
export async function createViteServer(options: ExtendedOptions, devServer: Server) {
const { port } = options;
// Remainder server configuration
// Creates the server.
return createServer({
// The server configuration goes here
server: {
middlewareMode: true,
hmr: {
port,
server: devServer,
},
},
});
}
```
```

View File

@ -1,5 +1,7 @@
```js
// .storybook/main.js|ts
// .storybook/main.js|cjs|ts
const { mergeConfig } = require('vite');
module.exports = {
stories: ['../stories/**/*.stories.mdx', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
@ -7,14 +9,16 @@ module.exports = {
core: {
builder: '@storybook/builder-vite',
},
async viteFinal(config, { configType }) {
// Return the updated configuration
async viteFinal(config) {
// Merge custom configuration into the default config
return mergeConfig(config, {
// Adds a new alias
resolve: {
alias: { exampleAlias: 'something' },
// Use the same "resolve" configuration as your app
resolve: (await import('../vite.config.js')).default.resolve
// Add dependencies to pre-optimization
optimizeDeps: {
include: ['storybook-dark-mode'],
},
});
},
};
```
```

View File

@ -1,5 +1,5 @@
```js
// .storybook/main.js|ts
// .storybook/main.js
module.exports = {
stories: ['../stories/**/*.stories.mdx', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
@ -7,12 +7,8 @@ module.exports = {
core: {
builder: '@storybook/builder-vite',
},
async viteFinal(config, { configType }) {
config.optimizeDeps.include = [
...(config.optimizeDeps?.include ?? []),
// Other dependencies go here
];
return config;
typescript: {
reactDocgen: 'react-docgen', // 👈 react-docgen configured here.
},
};
```
```