MVC4 でバンドルと縮小のサポートを実装し、Bootstrap .less ファイルを自動的にコンパイルできるように設定しています。BundleConfig.cs ファイルに次のコードがあります。
public class BundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
// base bundles that come with MVC 4
var bootstrapBundle = new Bundle("~/bundles/bootstrap").Include("~/Content/less/bootstrap.less");
bootstrapBundle.Transforms.Add(new TwitterBootstrapLessTransform());
bootstrapBundle.Transforms.Add(new CssMinify());
bundles.Add(bootstrapBundle);
}
}
TwitterBootsrapLessTransform は次のとおりです (サブ .less ファイルを dotLess にインポートする必要があるため、必要以上に複雑です)。
public class TwitterBootstrapLessTransform : IBundleTransform
{
public static string BundlePath { get; private set; }
public void Process(BundleContext context, BundleResponse response)
{
setBasePath(context);
var config = new DotlessConfiguration(DotlessConfiguration.GetDefault());
config.LessSource = typeof(TwitterBootstrapLessMinifyBundleFileReader);
response.Content = Less.Parse(response.Content, config);
response.ContentType = "text/css";
}
private void setBasePath(BundleContext context)
{
BundlePath = context.HttpContext.Server.MapPath("~/Content/less" + "/imports" + "/");
}
}
public class TwitterBootstrapLessMinifyBundleFileReader : IFileReader
{
public IPathResolver PathResolver { get; set; }
private string basePath;
public TwitterBootstrapLessMinifyBundleFileReader(): this(new RelativePathResolver())
{
}
public TwitterBootstrapLessMinifyBundleFileReader(IPathResolver pathResolver)
{
PathResolver = pathResolver;
basePath = TwitterBootstrapLessTransform.BundlePath;
}
public bool DoesFileExist(string fileName)
{
fileName = PathResolver.GetFullPath(basePath + fileName);
return File.Exists(fileName);
}
public byte[] GetBinaryFileContents(string fileName)
{
throw new System.NotImplementedException();
}
public string GetFileContents(string fileName)
{
fileName = PathResolver.GetFullPath(basePath + fileName);
return File.ReadAllText(fileName);
}
}
私のベース _Layout.cshtml ページで、これを実行して css ファイルをレンダリングしようとしました
@Styles.Render("~/bundles/bootstrap");
mvcチュートリアルで提案されているように、クライアントブラウザが最終的に要求するファイルは
http://localhost:53729/Content/less/bootstrap.less
これはエラーを引き起こします。次のリンクをベースレイアウトページごとに配置すると、期待どおりに機能します。
<link href="~/bundles/bootstrap" rel="stylesheet" type="text/css" />
@Styles.Render() がデバッグ モードで同じように動作しないのはなぜですか? リリースモードで動作します。デバッグでバンドルと縮小を望まないことは理解できますが、このバンドルを常に同じように機能させるにはどうすればよいですか?