From d7ebee64c5f8c0f82c1e4905215523fed219177e Mon Sep 17 00:00:00 2001 From: Adam Wathan Date: Thu, 16 May 2019 14:51:01 -0400 Subject: [PATCH] Fix Purgecss configuration --- postcss.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postcss.config.js b/postcss.config.js index d73733ea..e4fec190 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,5 +1,5 @@ const purgecss = require('@fullhuman/postcss-purgecss')({ - content: ['./*.html'], + content: ['./public/**/*.html'], defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || [] })