Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. /
  2. /App_Start
  3. BundleConfig.cs
  4. /Content
  5. app.css
  6. bootstrap.min.css
  7. /Fonts
  8. glyphicons-halflings-regular.eot
  9. glyphicons-halflings-regular.svg
  10. glyphicons-halflings-regular.ttf
  11. glyphicons-halflings-regular.woff
  12. glyphicons-halflings-regular.woff2
  13.  
  14. public static void RegisterBundles(BundleCollection bundles)
  15. {
  16. bundles.Add(new StyleBundle("~/public/bundles/css")
  17. .Include("~/Content/bootstrap.min.css")
  18. .Include("~/Content/app.css")
  19. );
  20.  
  21. bundles.Add(new ScriptBundle("~/public/bundles/scripts")
  22. .Include("~/Scripts/jquery-2.1.4.min.js")
  23. .Include("~/Scripts/jquery-ui-1.11.4.min.js")
  24. .Include("~/Scripts/bootstrap.min.js")
  25. .Include("~/Scripts/jquery.validate.min.js")
  26. .Include("~/Scripts/jquery.validate.unobtrusive.min.js")
  27. );
  28. }
  29.  
  30. ../fonts/glyphicons-halflings-regular.woff2
  31.  
  32. bundles.Add(new StyleBundle("~/public/bundles/css")
  33. .Include("~/Content/bootstrap.min.css", new CssRewriteUrlTransform())
  34. .Include("~/Content/app.css")
  35. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement