我正在使用.net版本4
如果使用t really recall what I changed, but for some reason I can
,我将无法<handlers>
<add name="AttributeRouting" path="routes.axd" verb="*" type="AttributeRouting.Web.Logging.LogRoutesHandler, AttributeRouting.Web" />
<add name="dotless" path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler,dotless.Core" resourceType="File" preCondition="" />
</handlers>
提供静态CSS文件
BundleTable.EnableOptimizations = false;
我可以从〜/ Content文件夹提供图像。
我已经安装了无点安装,但此后仍然有效。这可能是web.config中的更改吗?
```
@Styles.Render("~/bundle/css")
@Styles.Render("~/bundle/vendor/css")
@Styles.Render("~/Content/css/Styles.less")
```
我正在提供这样的文件
func startLoader(){
DispatchQueue.main.async {
SVProgressHUD.show(withStatus: "Loading...")
SVProgressHUD.setDefaultStyle(SVProgressHUDStyle.dark)
SVProgressHUD.setRingThickness(3.0)
SVProgressHUD.setMinimumDismissTimeInterval(2.0)
}
}
如果启用优化,则捆绑软件有效,但较少的文件仍然是404。我认为处理程序可能由于某些原因而损坏。
我不太了解修复该问题所需的信息,对此深表歉意。