I've been attempting to utilize CssRewriteUrlTransform within one of my bundles in bundleconfig, however I'm consistently receiving a missing argument error. Here's what my code looks like:
bundles.Add(new StyleBundle("~/Content/GipStyleCss").Include(
new CssRewriteUrlTransform(),
"~/Content/GipStyles/all.css",
"~/Content/GipStyles/normalize.css",
"~/Content/GipStyles/reset.css",
"~/Content/GipStyles/style.css",
));
I suspect that something is incorrect, but I'm unsure about where exactly to include the CssRewriteUrlTransform argument when there are multiple arguments in the include statement.