0.0.5 • Published 7 months ago
@mikepattyn/authress-angular v0.0.5
Authress Angular
This package only contains a module for easy setup and registration of the Authress LoginClient For details about the Authress Login SDK. See https://authress.io.
Install
npm install @mikepattyn/authress-angularSetup in AppModule
@NgModule({
declarations: [AppComponent],
imports: [
// Other imports
AuthressModule.forRoot({
authressApiUrl: environment.authressLoginUrl,
applicationId: environment.authressAppId,
}),
],
bootstrap: [AppComponent],
})
export class AppModule {}