gpt4 book ai didi

asp.net-mvc-3 - 找不到包含路径 "~/Public/stylesheets/main.less"的资源包

转载 作者:行者123 更新时间:2023-12-02 15:29:36 25 4
gpt4 key购买 nike

我尝试访问 Cassette 的调试页面来查看是什么,但我得到的只是一个空白页面(Firebug 说我收到了 404 header )。实在不知道为什么:

www.foobar.com/_cassette
^-----------This is the debugger page for Cassette.

我使用 ASP.Net MVC3 和 Cassette 进行 Assets 捆绑和缩小。

在我的开发计算机上一切正常,但是当部署到托管服务器时,这是我收到的消息:

Server Error in '/' Application.

Cannot find an asset bundle containing the path "~/Public/stylesheets/main.less".

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Cannot find an asset bundle containing the path "~/Public/stylesheets/main.less".

再次强调:在我的开发机器上一切正常。

这是我的 CassetteConfiguration 文件:

public void Configure(BundleCollection bundles, CassetteSettings settings)
{
bundles.Add<StylesheetBundle>("~/Public/stylesheets");
bundles.Add<ScriptBundle>("~/Public/javascripts");
}

在我的 _Layout.cshtml 文件中:

@{
Bundles.Reference("~/Public/stylesheets/bootstrap.css");
Bundles.Reference("~/Public/stylesheets/main.less");
}

我正在使用 Vidahost 的共享“云”托管。

我可以采取什么步骤来调试这个问题?我整个下午都在研究它,到目前为止还没有突破。

谢谢!

最佳答案

尝试在 BundleConfig 文件中添加以下内容

public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-1.*"));

bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
"~/Scripts/jquery-ui*"));

bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*"));

bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));

bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));

bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
"~/Content/themes/base/jquery.ui.core.css",
"~/Content/themes/base/jquery.ui.resizable.css",
"~/Content/themes/base/jquery.ui.selectable.css",
"~/Content/themes/base/jquery.ui.accordion.css");
}

关于asp.net-mvc-3 - 找不到包含路径 "~/Public/stylesheets/main.less"的资源包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11254141/

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