Add documentation for Nx 13 with Angular 13 #17419

This commit is contained in:
Juri Sinitson 2022-03-10 14:47:00 +01:00
parent adde260873
commit 7b952fb04e

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
}
}
}
```