Merge pull request #17520 from juri-sinitson/patch-3

Add documentation for Nx 13 with Angular 13 #17419
This commit is contained in:
jonniebigodes 2022-03-10 22:10:46 +00:00 committed by GitHub
commit ca8b0f3ef1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,4 +39,28 @@ Additionally, if you need Storybook specific styles that are separate from your
}
}
}
```
```
### Nx with Angular 13
If you're working with Storybook and [NX libraries](https://nx.dev/structure/library-types), you can extend your project's configuration (i.e., `project.json`) and provide the application's styles. For example:
```json
"build-storybook": {
"executor": "@nrwl/storybook:build",
"outputs": ["{options.outputPath}"],
"options": {
"uiFramework": "@storybook/angular",
"outputPath": "dist/storybook/example-lib",
"config": {
"configFolder": "libs/example-lib/storybook/.storybook"
},
"projectBuildConfig": "example-lib:build-storybook",
"styles": ["apps/example-app/src/styles.scss"]
},
"configurations": {
"ci": {
"quiet": true
}
}
}
```