Bundling is the technique to request a web page from server with less number of requests for the resources(js/css) required on that page which makes page load performance much better. If you are facing browser cache problem or need to forcefully clear your browser cache to reflect your files (.js/css) changes every time then best option is implement bundling in your application. Because bundling will take care of all those manual process and reflect your changes without clearing browser cache forcefully.
Below are the problems you may face during implementation of Bundling:
Problem 1: Browser cache problem/ User not getting latest changes of resources (CSS/JS)/ User need to clear cache forcefully to get latest changes every time
Problem 2: 404 error after implementing bundling (resource not exists on given path or your images path is being changed due to bundling implementation)
Problem 3: Bundling stopped working on HTTPS Site (Website is working on development properly as soon as it is deployed on HTTPS(production server) bundling is not working and gives 404 resouce not found error
Problem 4: 403 -Access denied when using Bundling
No comments:
Post a Comment