gpt4 book ai didi

css - 无法让 dotLess 工作

转载 作者:太空狗 更新时间:2023-10-29 12:29:10 25 4
gpt4 key购买 nike

我正在使用 dotLess .

我遵循了他们所有的指示(这看起来很简单)它只有 4 个步骤:)

我的最小 web.config 看起来像这样:

<configuration>
<configSections>
<section name="dotless" type="dotless.Core.configuration.DotlessConfigurationSectionHandler,dotless.Core" />
</configSections>
<dotless minifyCss="false" cache="true" />
<system.web>
<httpHandlers>
<add type="dotless.Core.LessCssHttpHandler, dotless.Core" validate="false" path="*.LESS" verb="*" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers>
<add name="LessHttpHandler" type="dotless.Core.LessCssHttpHandler, dotless.Core" preCondition="integratedMode" path="*.less" verb="*" />
</handlers>
</system.webServer>
</configuration>

我已经在我的内容文件夹中添加了我的 .less 文件(我正在使用 ASP.NET MVC - Razor ViewEngine)

我的布局有一个指向我的 .less 包含文件的链接:

<link rel="stylesheet/css" type="text/css" href="@Url.Content("~/Content/Site.less")" />

我还在我的网络应用程序中添加了对 dotless.Core.dll 的引用

然而,尽管我对页面的正文背景做了一个简单的样式设置为黑色,但没有任何反应,由于某种原因它没有启动。

我是不是漏掉了什么?

最佳答案

您是否将 httphandler 设置为根据请求运行?添加这个:

<configuration>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"></modules>
</system.webServer>
</configuration>

关于css - 无法让 dotLess 工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7282222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com