I have registered bundles in Global.asax.cs file. When I enter my domain name with bundles path in browser, I am able to view minified js,css content in browser. How to hide contents from external viewing which are added in bundles. Below URL should not display any content in the browser. Any suggestion please.
https://examplewebsite.com/website/bundles/jscode
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jscode").Include(
"~/Scripts/UIScripts/Module1/MainCode1.js",
"~/Scripts/UIScripts/Module2/MainCode2.js",
"~/Scripts/UIScripts/Module3/MainCode3.js"
));
}