Bootstrap Icons not showing in published ASP.NET MVC application

后端 未结 17 2010
孤城傲影
孤城傲影 2021-01-30 11:30

--- NB: Go to the EDITED 2 section for summary ----

I have an ASP.NT MVC (4) application. I integrated (twitter)Bootstrap to it. Bootstrap is working perfectly, but the

17条回答
  •  心在旅途
    2021-01-30 11:42

    adding: BundleTable.EnableOptimizations = False fixed my issue.

    Public Sub RegisterBundles(ByVal bundles As BundleCollection)
        BundleTable.EnableOptimizations = False
        bundles.Add(New StyleBundle("~/DefaultStyles").Include(
          "~/Content/custom3.css"))
    End Sub
    

提交回复
热议问题