10

我在我的一个 css 文件中有一个 @import 语句......我所有的 css 文件都被捆绑/缩小,显然这不是 kosher,因为我收到一个错误:

run-time error CSS1019: Unexpected token, found '@import'

导入是来自 Google 的字体。在 MVC4 中处理 CDN 的正确方法是什么?

谢谢

4

1 回答 1

18

这简直太尴尬了……

在 BundleConfig.cs 中:

bundles.UseCdn = true;

// bundles code

var cdnPath = "path to your resource (font in my case)";
bundles.Add(new StyleBundle("~/fonts", cdnPath));

然后在布局中

@Styles.Render("~/fonts")
于 2013-04-15T19:35:46.620 回答