- Add the `--type angular` flag to the installation command to set up Storybook manually:
```shell
npx sb init --type angular
```
- Storybook supports Webpack 5 out of the box. If you're upgrading from a previous version, run the following command to enable it:
```shell
npx sb@next automigrate
```
Check the [Migration Guide](https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#automigrate) for more information on how to set up Webpack 5.
- If you're using the custom Storybook builder, Storybook will not automatically open a browser window or tab. It's is a known issue that we plan to fix in future releases.
- When adding Storybook to your Angular project, check if you're running the install command from the root directory. Or in a monorepo environment inside the directory where the `angular.json` file is located.
- If you need further customization to the Storybook builder configuration, you can use the following table as a reference:
| Configuration element | Description |
|------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `"browserTarget"` | Build target to be served using the following format.
`"example-project:builder:config"` |
| `"tsConfig"` | Location of the TypeScript configuration file, relative to the current workspace.
`"tsConfig": "./tsconfig.json"`. |
| `"port"` | Port used by Storybook.
`"port": 6006` |
| `"host"` | Set up a custom host for Storybook.
`"host": "http://my-custom-host"` |
| `"configDir"` | Storybook configuration directory location.
`"configDir": ".storybook"` |
| `"https"` | Starts Storybook with HTTPS enabled.
`"https": true`
Requires custom certificate information. |
| `"sslCa"` | Provides an SSL certificate authority.
`"sslCa": "your-custom-certificate-authority"`
Optional usage with `"https"` |
| `"sslCert"` | Provides an SSL certificate.
`"sslCert": "your-custom-certificate"`
Required for `https` |
| `"sslKey"` | Provides an SSL key to serve Storybook.
`"sslKey": "your-ssl-key"` |
| `"smokeTest"` | Exit Storybook after successful start.
`"smokeTest": true` |
| `"ci"` | Starts Storybook in CI mode (skips interactive prompts and will not open browser window).
`"ci": true` |
| `"quiet"` | Filters Storybook verbose build output.
`"quiet": true` |
| `"docsMode"` | Starts Storybook in [documentation mode](../writing-docs/build-documentation.md#preview-storybooks-documentation).
`"docsMode": true` |
| `"styles"` | Provide the location of the [application's styles](../configure/styling-and-css.md#importing-css-files) to be used with Storybook.
`"styles": ["src/styles.css", "src/styles.scss"]`
|
| `"stylePreprocessorOptions"` | Provides further customization for style preprocessors resolved to the workspace root.
`"stylePreprocessorOptions": { "includePaths": ["src/styles"] }` |
- For other installation issues, check the [Angular README](../../app/angular/README.md) for additional instructions.