It seems that the Minify Plugin does not work, if the Advanced page cache plugin is activated. Is there any possibility, to make both plugins work at the same time? Meaning First minify the page html and the give it over to the Advanced page cache.
I have seen the plugin prioritization (priorities.yaml) however I would not know how to configure it.
@NEA, UPDATE: After closer look at both plugins, and accidentally discovering the docs on plugin prioritisation.
Prioritising plugins:
The following configuration of the file ‘/user/config/priorities.yaml’, sets the priority of the event-handler of Minify-HTML for event onOutputGenerated higher then AdvancedPageCache.
minify-html: # name of plugin
onOutputGenerated: # name of event
onOutputGenerated: 10 # name of function handling the event + priority
AdvancedPageCache will now cache the minified page.
Other optimisations: (for completeness’ sake)
Before resorting to above plugins to squeeze the last bit of performance out if Grav, I presume you have already taken care of other performance techniques?