我试图捆绑一个在MVC 4中具有配置的JS文件,
http://cdn.mathjax.org/mathjax/latest/MathJax.js?的配置 = TEX-AMS-MML_HTMLorMML
BundleConfig.cs文件,
bundles.Add(new ScriptBundle("~/bundles/MathJax").Include(
"~/Scripts/MathJax/MathJax.jsMathJax.js?config=TeX-AMS-MML_HTMLorMML"));
_Layout.chtml文件
@Scripts.Render("~/bundles/MathJax")
当我在头文件中包含JS时,它可以工作,但在包含在Bundle中时不起作用。
我尝试将配置添加到渲染部分
BundleConfig.cs文件,
bundles.Add(new ScriptBundle("~/bundles/MathJax").Include(
"~/Scripts/MathJax/MathJax.jsMathJax.js"));
_Layout.chtml文件
@Scripts.Render("~/bundles/MathJax?config=TeX-AMS-MML_HTMLorMML")
答案 0 :(得分:0)
MathJax具有许多依赖关系,并且似乎不支持捆绑。它将需要对js文件本身进行大量更改,并且将不被支持。
因此,您的问题的答案是。 否,您不能捆绑Mathjax。