Compress icon indicating copy to clipboard operation
Compress copied to clipboard

Compress 🗜️

Results 27 Compress issues
Sort by recently updated
recently updated
newest added

It would be nice if there would a cache folder where the already compressed images are in so they won't need a new compression. It takes long to do the...

enhancement
help wanted

As a new feature, it would be cool to compress JSON files too. I'm thinking specifically about web manifest files. They are sometimes shipped with the `.manifest` extension, but have...

enhancement
help wanted

All of my media queries are deleted after adding astro-compress

I'm testing with Terser and i don't seem to get the same result. My `astro.config.mjs` ```ts import { defineConfig } from "astro/config"; import compress from "astro-compress"; export default defineConfig({ integrations:...

Love this package! But not the performance, especially when using it with lots of image files :( It doesn't seem to be compressing in parallel. A "make parallel" improvement to...

enhancement
help wanted

Hi, thank you for making this first of all! There is LightningCSS from the author of Parcel: https://lightningcss.dev/, which seems to better and faster than CSSO. So maybe switching to...

enhancement

The shorthand compression of LightningCSS is not working: [https://lightningcss.dev/minification.html#shorthands](https://lightningcss.dev/minification.html#shorthands) ` .myclass { border-width:0; border-style:solid; border-color:#e5e7eb; } ` gets compressed to ` .myclass{border-width:0;border-style:solid;border-color:#e5e7eb} ` It should instead be compressed to `...

enhancement

_This is not an issue but a feature request._ I manage a site in astro that builds about 65,000 html files. I used astro-compress for a while and the compression...

enhancement

I have some XML files that could be minified, such as my `sitemap.xml`, `rss.xml`, and `styles.xsl`. It would be nice if these were minified as well. Maybe could use something...

Hi, This is my first time reporting an issue, so I hope this is the right place to do it. Issue: After including compress in my project, I noticed that...