Browse Source

Merge pull request #8821 from abpframework/mehmet-erim-patch-1

Removed next tag from npm install commands in Account-Module.md
pull/8825/head
Bunyamin Coskuner 5 years ago
committed by GitHub
parent
commit
e531958d64
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      docs/en/UI/Angular/Account-Module.md

10
docs/en/UI/Angular/Account-Module.md

@ -13,10 +13,10 @@ If you add the account module to your project;
Install the `@abp/ng.account` NPM package by running the below command:
```bash
npm install @abp/ng.account@next
npm install @abp/ng.account
```
> Make sure v4.3-rc or higher version is installed.
> Make sure v4.3 or higher version is installed.
Open the `app.module.ts` and add `AccountConfigModule.forRoot()` to the imports array as shown below:
@ -52,12 +52,12 @@ export class AppRoutingModule {}
### Account Public Module Implementation for Commercial Templates
The pro startup template comes with `@volo/abp.ng.account` package. You should update the package version to v4.3-rc or higher version. The package can be updated by running the following command:
The pro startup template comes with `@volo/abp.ng.account` package. You should update the package version to v4.3 or higher version. The package can be updated by running the following command:
```bash
npm install @volo/abp.ng.account@next
npm install @volo/abp.ng.account
```
> Make sure v4.3-rc or higher version is installed.
> Make sure v4.3 or higher version is installed.
Open the `app.module.ts` and add `AccountPublicConfigModule.forRoot()` to the imports array as shown below:

Loading…
Cancel
Save