Environment Banner
The banner at the bottom of the sidebar can be used to indicate which environment the application is being run in. This can let users know if their changes are being made to dev environment instead of production.
Production generally shouldn't show this banner. It's shown here as a demonstration.
The settings for this are in the appsettings.json files in this format:
{
"EnvironmentBanner": {
"Show": true,
"NameOverride": "Local Development",
"Color": "#FF6727"
}
}
If this section is not present, then no banner will be displayed.