PlayForm / Compress

🗜️ Compress —

Home Page:https://NPMJS.Org/@playform/compress

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

css is compressed even with the `css: false` option

cocoliliace opened this issue · comments

commented

According to the README, we can disable css compression by adding css: false to our astro.config.mjs like this:

export default defineConfig({
  integrations: [
    compress({
      css: false,
    }),
  ],
});

which is what I had, but when I ran the build command, I still got output saying css was compressed:
image

I don't think it's my syntax issue somewhere because I can change it to img: false and it would correctly skip the images.