Can you suggest minifiers that improve performance and SEO? #75
-
|
I want to increase the performace of the application which is less than 40%, any minifiers that can be used here for the same? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @praneetharao0994 👋, On Arc XP you generally don’t need to plug in your own minifier – PageBuilder Engine already uses Webpack to minify and tree-shake the bundle in non-local environments by default. Locally, this behavior is controlled by the
So if your live site is showing a performance score below 40% (e.g. Lighthouse/PageSpeed), the bottleneck is usually not “missing minification”, but things like:
Arc has a few docs that walk through concrete steps to improve this:
If they share which parts of the page are heaviest (for example a specific block or library), you can then point them to code-splitting or static rendering for that feature and get much bigger gains than you’d get from just adding another minifier. Best, Rado |
Beta Was this translation helpful? Give feedback.
Hi @praneetharao0994 👋,
On Arc XP you generally don’t need to plug in your own minifier – PageBuilder Engine already uses Webpack to minify and tree-shake the bundle in non-local environments by default. Locally, this behavior is controlled by the
MINIFYenv variable:So if your live site is showing a performance score below 40% (e.g. Lighthouse/PageSpeed), the bottleneck is usually not “missing minification”, but things like: