Is it possible to use bundling and minification from Microsoft.AspNet.Web.Optimization without having an MVC project?
I\'m creating an AngularJS site communicating w
@Matt, actually you don't need to add
<%@ Import Namespace="System.Web.Optimization" %>
<%= Styles.Render("~/bundles/css") %>
<%= Scripts.Render("~/bundles/MattsUIBundle/js") %>
And you don't need use CSHTML-template. You can reference your bundles this way from an html page:
It will save your page from View Engine.