Skip to content

Commit

Permalink
docs: add guide to generate a container with scss (#1652)
Browse files Browse the repository at this point in the history
Closes #1650
  • Loading branch information
musou1500 authored and brandonroberts committed Mar 26, 2019
1 parent 89c8b56 commit a7e6303
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions projects/ngrx.io/content/guide/schematics/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,13 @@ Generate a `UsersPage` container component with your reducers imported and the `
```sh
ng generate container UsersPage --state reducers/index.ts --stateInterface MyState
```

If you want to generate a container with an scss file, add `@ngrx/schematics:container` to the `schematics` in your `angular.json`.

```json
"schematics": {
"@ngrx/schematics:container": {
"styleext": "scss"
}
}
```

0 comments on commit a7e6303

Please sign in to comment.