Merge pull request #11579 from umbraco/v9/bugfix/allow_map_filesd_as_default_BrowsableFileExtensions

Allow .map files as default browsable file extensions from the App_Pl…
This commit is contained in:
Nikolaj Geisle
2021-11-05 08:53:08 +01:00
committed by GitHub

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
});
}
}