PROGRAM AREA
Statistics
The Highest Post
Statistics
Count
20
Avg
21.00
Min
21
Max
21
Asp.Net Core Top questions
Details
Peter Agyekum
What are the different ways for bundling and minification in ASP.NET Core?
Ans: There are different ways for doing bundling and minification in ASP.NET Core. Gulp – was the default choice for ASP.NET Core till beta versions. Later it was removed due to performance and speed issue and replaced with BundlerMinifier. Read this post to find out the reasons of this decision. BundlerMinifier – is a Visual Studio extension and it’s default choice now. You should see bundleconfig.json file in your default template. Read this post to know more about bundling and minification in ASP.NET Core. ASP.NET Core Web Optimizer – ASP.NET Core middleware for bundling and minification of CSS and JavaScript files at runtime. Grunt – can also be used with ASP.NET Core. For more Read Overview of Tools for bundling and minification in ASP.NET Core.
Post Reply
Back to HomePage
Related Topics
What is .NET Core?
What are some of the features of .Net Core?
Why Use ASP.NET Core for Web Application Development?
What is Startup.cs file in ASP.NET Core?
What ConfigureServices() method does in Startup.cs?
What is Kestral?
What is WebListener?
What is a Host and what’s the importance of Host in ASP.NET Core application?
How to handle 404 error in ASP.NET Core 1.0
What is the use of UseIISIntegration?
What are the different ways for bundling and minification in ASP.NET Core?
What is wwwroot folder in ASP.NET Core?
What is AspNetCore Middleware?
What is Static files in ASP.NET Core?
What is AspNetCore EndPoint?
What is host in AspNetCore?
What does CreateDefaultBuilder in program.cs in Asp.netCore?
What is Kestrel?
What is the difference between synchronous postback and asynchronous postback?
Can you explain Service Lifetime in AspNet Core?