Как добавить ckeditor.js в bundleconfig.json - PullRequest
0 голосов
/ 11 января 2019

Я хочу добавить ckeditor.js в bundleconfig.json, но он не работает. Вот мой код, который работает, но я хочу переместить второе включение в bundleconfig.json

public class BundleConfig
{
        bundles.Add(new ScriptBundle("~/app").Include("~/Assets/Scripts/app.js").Include("~/Scripts/ckeditor/ckeditor.js"));

}

bundleconfig.json

[
 {
"outputFileName": "Assets/Scripts/app.js",
"inputFiles": [

  "Scripts/jquery-3.3.1.js",
  "Scripts/jquery-migrate-3.0.0.js",
  "Scripts/jquery.validate.js",
  "Scripts/jquery.validate.unobtrusive.js",

  "Scripts/popper.js/umd/popper.js",
  "Scripts/bootstrap/js/bootstrap.js",

  "Scripts/main.js"
   ]
 }
]
...