Allow .map files as default browsable file extensions from the App_Plugins static file handler.

This commit is contained in:
Bjarke Berg
2021-11-04 20:58:02 +01:00
parent cd596b444e
commit a528b9d5f4

View File

@@ -11,8 +11,6 @@ namespace Umbraco.Cms.Core.Configuration.Models
[UmbracoOptions(Constants.Configuration.ConfigPlugins)]
public class UmbracoPluginSettings
{
/// <summary>
/// Gets or sets the allowed file extensions (including the period ".") that should be accessible from the browser.
/// </summary>
@@ -25,7 +23,8 @@ namespace Umbraco.Cms.Core.Configuration.Models
".jpg", ".jpeg", ".gif", ".png", ".svg", // images
".eot", ".ttf", ".woff", // fonts
".xml", ".json", ".config", // configurations
".lic" // license
".lic", // license
".map" // js map files
});
}
}