Azure Application settings in Angular

185 views Asked by At

Somebody know how to get the Applications settings in angular?

enter image description here

1

There are 1 answers

3
Sajeetharan On

There are several ways to do it, one way is to use the npm package app-configuration

and then you can access the config like this

const client = new AppConfigurationClient("<connection string>");

const setting = await client.getConfigurationSetting({
  key: "db"
});