Why not enable Tailwind "purge" mode?

Adding the following to the tailwind.js file will remove unused CSS code from the final CSS bundle:

module.exports = {
  purge: [
    './src/**/*.html',
    './src/**/*.vue',
  ],
....

Is there any reason for the purge mode not being enabled?

App size without the purge:

App size with the purge:

If i did the math right, it’s a 91% CSS bundle reduction for the raw thing and 83% for the gzipped bundle.

I can open a PR if needed.

There’s an issue on GitHub about reducing the web app size (https://github.com/agola-io/agola-web/issues/9) already tho