-
I think users of bonsai.css would stand to gain a lot from setting up [purgecss](https://github.com/FullHuman/purgecss) with their build tool.
JaKXz updated
3 years ago
-
# What to do if purgeCSS is purging code inside an ignore block - Full Stack Heroes
A simple answer as to why your purgeCSS code is still purging you CSS/Tailwind code even though it is still inside …
-
If I use this package in the project that enable PurgeCSS. Most or some of the style that use nested class doesn't rendered.
For example Alert component:
this what it looks if I'm not using Purg…
-
PurgeCSS is a tool, which looks at HTML files and removes unused CSS.
Why? Because our CSS files are bloated. According to PageSpeed Insights
https://developers.google.com/speed/pagespeed/insights…
-
Since v1.4.0 has started to include PurgeCSS in Tailwind, is it possible to use the built-in PurgeCSS with Jekyll and update the setup-example files?
I have yet to get this working on my own site o…
-
Consider this snippet of CSS:
```
@container (min-width: 700px) {
color: blue;
}
```
If you attempt to run postcss-csso 6.0.1 on a file containing this snippet, you'll get the following …
-
const Purgecss = require('purgecss')
const fs = require('fs')
const path = require('path')
const outputDir = path.resolve(__dirname,'dist')
const purgecss = new Purgecss({
content:[ 'of…
-
**Quick, short summary:**
PurgeCSS wrongly removes all classes containing the colon character (i.e. md:w-6) despite them being in use. Could this be due to the colon character being escaped in the ac…
-
Without this the CSS triggers 'CSS too large' warnings with ahrefs and PageSpeed when `purgecss: false`.
At present `purgecss: true` with a custom colour scheme uses the perplex built-in colour sch…
-
### Basic info:
- **Node.js version:** 12, 14
- **jsdom version:** 16.5.3
### Minimal reproduction case
I pushed a minimal reproduction to this repo - https://github.com/boopathi/jsdom-bug-1…