7
Reply

what is bundling and minification in mvc?

Thennarasu N

Thennarasu N

Oct 20, 2016
1.6k
0

    It is basically minified css and JS file to use less space that being loaded by our application

    Manav Pandya
    February 09, 2017
    2

    Bundling and minification are two techniques you can use in ASP.NET 4.5 to improve request load time. Bundling and minification improves load time by reducing the number of requests to the server and reducing the size of requested assets (such as CSS and JavaScript.)

    Thennarasu N
    October 20, 2016
    2

    Bundling and minification techniques are used to improve request load time by reducing number of request to the server. Bundling combines multiple file into single file like CSS, javascript. Fewer files means fewer request ultimately improves load performance. Minification is the removal of unnecessary things for code optimzation like white space,comments etc.

    Mrunal
    January 10, 2018
    0

    Bundling is the concept where we group files i.e css, js files, and request to the server in a single attempt. Bundling helps to overcome load from the server that happen in case of individual request.Saves bandwidth and load application faster.Minification : In manification, we remove extra spaces from js files,remove commented lines to lower the size of the js files that helps us to load js file fasters.

    Kailash Salvi
    September 25, 2017
    0

    Bundling means grouping of same type of file in a single unit.Minification means removing extra space, multilines and comments from .js or .css so that file size should be reduced which will take less time to load.

    sushil kumar
    July 20, 2017
    0

    Bundling means grouping of same type of file in a single unit.Minification means removing extra space, multilines and comments from .js or .css so that file size should be reduced which will take less time to load.

    sushil kumar
    July 20, 2017
    0

    Bundling means grouping of same type of file in a single unit.Minification means removing extra space, multilines and comments from .js or .css so that file size should be reduced which will take less time to load.

    sushil kumar
    July 20, 2017
    0