user3194721
user3194721

Reputation: 815

angularjs bundling & minification

I created application using "ASP.NET Empty Web Site". I want to Bundling and Minification css & js files. How can I do using web.config?

angularjs bundling & minification

-Thanks

Upvotes: 0

Views: 1017

Answers (1)

Peter
Peter

Reputation: 303

You could look into something like Webpack or write your CSS styles in LESS/SCSS and your JS stuff in Typescript, so when building your files they will be automatically minified.

You'll get *.min.css & *.min.js files if set up correctly.

There are plenty if tutorials on the interwebs so I won't go into the details here.

Upvotes: 2

Related Questions