I can't completely log in to the admin, but can see the unbundled files on the admin login page. The site is
https://estexmfg.com. I can't post a screenshot because paperclip icon is not available.
First part of web.config is:
<?xml version="1.0" encoding="UTF-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=301880 -->
<configuration>
<configSections>
<section name="syscache" type="NHibernate.Caches.SysCache.SysCacheSectionHandler, NHibernate.Caches.SysCache" requirePermission="false" />
</configSections>
<connectionStrings configSource="App_Data\database.config" />
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
<add key="Theme" value="Sample" />
<add key="RouteDebugger:Enabled" value="false" />
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
<syscache>
<cache region="LongTerm" expiration="3600" priority="5" />
<cache region="ShortTerm" expiration="900" priority="3" />
</syscache>
<system.web>
<customErrors mode="On" defaultRedirect="~/Errors/Error" redirectMode="ResponseRewrite">
<error statusCode="404" redirect="~/Errors/PageNotFound"/>
<error statusCode="500" redirect="~/Errors/Error"/>
</customErrors>
<trace enabled="false" requestLimit="100" pageOutput="false" localOnly="true" mostRecent="true"/>
<compilation debug="false" targetFramework="4.6.2" />
<httpRuntime targetFramework="4.6.2" maxRequestLength="20480" />