By clicking “Accept All”, you agree to the storing of cookies on your device to enhance site navigation, analyse site usage, and assist in our marketing efforts
These cookies enable our website and App to remember things such as your region or country, language, accessibility options and your preferences and settings.
Analytic cookies help website owners to understand how visitors interact with websites by collecting and reporting information anonymously.
Marketing cookies are used to track visitors across websites. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.
Do you mean minification is dynamic? That it takes place as the page is requested?It slows down a site increasing TTFB (time to first byte).
Do you mean minification is dynamic? That it takes place as the page is requested?
I suspect this is a large part of the reasoning behind keeping minification off by default. It's near-impossible to customise and edit HTML that's been minified; you spend more time trying to work out where one line begins and another ends than you do making any progress development-wise.It's also easier to work with properly formatted html in the development phase. As soon as the site is live, enable it and test.
I highly doubt that.I suspect this is a large part of the reasoning behind keeping minification off by default. It's near-impossible to customise and edit HTML that's been minified; you spend more time trying to work out where one line begins and another ends than you do making any progress development-wise.
Interesting - I wasn't aware the browser dev tools had this functionality. I see you offer a Magento development service so I dare say you're more informed on the subject than I am. Slightly off-topic but is it standard practice to develop using the built in browser tools? Most of my development takes place in desktop text editors so it'd be interesting to see how the pros do it.I highly doubt that.
Chrome dev tools source editor formats your HTML regardless of whether it's minified or not. The other browser HTML inspect tools do the same.