From a528b9d5f47b02e44e4748e8c4ba2a98ee9f3366 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 4 Nov 2021 20:58:02 +0100 Subject: [PATCH] Allow .map files as default browsable file extensions from the App_Plugins static file handler. --- .../Configuration/Models/UmbracoPluginSettings.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Core/Configuration/Models/UmbracoPluginSettings.cs b/src/Umbraco.Core/Configuration/Models/UmbracoPluginSettings.cs index d5b74b38dc..d016e3547b 100644 --- a/src/Umbraco.Core/Configuration/Models/UmbracoPluginSettings.cs +++ b/src/Umbraco.Core/Configuration/Models/UmbracoPluginSettings.cs @@ -11,8 +11,6 @@ namespace Umbraco.Cms.Core.Configuration.Models [UmbracoOptions(Constants.Configuration.ConfigPlugins)] public class UmbracoPluginSettings { - - /// /// Gets or sets the allowed file extensions (including the period ".") that should be accessible from the browser. /// @@ -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 }); } }