Is it possible to treat app settings in Azure as an object using Node/Express similar to ASP.NET Core?
For example, if my app settings are:
container:value1 = "Hello",
container:value2 = "World"
I'd like to get an object for "container" that gives me:
{
value1: "Hello",
value2: "World"
}
I've tried container:value1 and container__value1 like ASP.NET Core, but without luck.
./config/config.jsin the root of your app directory?