How to Disable Browser Link in Visual Studio 2013
As useful as it can be, sometimes you just need to turn Browser Link off. There are two ways to do this in your Web.config file:
- Add the
vs:EnableBrowserLinkto your<appSettings>and set it’s value tofalse:
<appSettings>
<add key="vs:EnableBrowserLink" value="false" />
</appSettings>
- Set the value of
debugin the<compilation>tag tofalse:
<system.web>
<compilation debug="false" targetFramework="4.5" />
</system.web>