I'm currently working on a project in NUXT utilizing yarn for managing packages.
My objective is to compress (and potentially merge) js, css, and html files to enhance load time efficiency.
I came across "https://www.npmjs.com/package/nuxt-compress" while doing some research.
Although I attempted to add module.export to NUXT.config.js, unfortunately, it didn't yield the desired results.
Could someone provide me with clear instructions on how to set up compression during build time? I am relatively new to NUXT.
Where should I place the code and which command do I need to execute when building or running the project?
I assume that "yarn build" accomplishes some level of optimization by minifying css and js. However, can we go further by implementing gzip and combining multiple files together like js, css, or html?