私は ASP.Net MVC 4 を使用しており、Toastr も使用しようとしています。
NuGet経由でインストールしました-開発中は機能しますが、公開すると、Javascriptの「バンドル」が次のように報告されます。
/* Minification failed. Returning unminified contents.
(9908,1-2): run-time warning JS1002: Syntax error: }
*/
/*!
* jQuery JavaScript Library v1.8.3
* http://jquery.com/
私のバンドルファイルは次のとおりです。
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
namespace BootstrapSupport
{
public class BootstrapBundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/js").Include(
"~/Scripts/jquery-1.10.1.js",
//"~/Scripts/jquery-migrate-{version}.js",
"~/Scripts/bootstrap.js",
"~/Scripts/jquery.validate.js",
"~/scripts/jquery.validate.unobtrusive.js",
"~/Scripts/jquery.validate.unobtrusive-custom-for-bootstrap.js",
"~/Scripts/jquery.tablesorter.js",
"~/Scripts/toastr.js",
"~/Scripts/mt.js"
));
bundles.Add(new StyleBundle("~/content/css").Include(
"~/Content/bootstrap.css",
"~/Content/body.css",
"~/Content/bootstrap-responsive.css",
"~/Content/bootstrap-mvc-validation.css",
"~/Content/style.css",
"~/Content/toastr.css"
));
}
}
}
上記のバンドルから Toastr を取り出すと、他のすべてが正常に動作します。
この問題を解決する方法を教えてください。
ありがとう、マーク