Skip to content

Commit

Permalink
docs(app): fix builder name in installation documentation (ng-doc#141)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Rouart <[email protected]>
  • Loading branch information
zerbusdetroy and Michael Rouart authored Mar 15, 2024
1 parent b8061f0 commit 26598c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/ng-doc/docs/getting-started/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ npm i @ng-doc/{core,builder,ui-kit,app}
### Adding builders

First of all you need to add builders from NgDoc library to your application,
replace `browser` and `dev-server` builders for `build` and `serve` targets with
replace `application` and `dev-server` builders for `build` and `serve` targets with
alternatives from the NgDoc as shown in the example below

```json group="builders" name="Angular (angular.json)" icon="angular"
Expand All @@ -48,7 +48,7 @@ alternatives from the NgDoc as shown in the example below
"my-project": {
"architect": {
"build": {
"builder": "@ng-doc/builder:browser"
"builder": "@ng-doc/builder:application"
},
"serve": {
"builder": "@ng-doc/builder:dev-server"
Expand All @@ -63,7 +63,7 @@ alternatives from the NgDoc as shown in the example below
{
"targets": {
"build": {
"executor": "@ng-doc/builder:browser"
"executor": "@ng-doc/builder:application"
},
"serve": {
"executor": "@ng-doc/builder:dev-server"
Expand Down

0 comments on commit 26598c1

Please sign in to comment.