about summary refs log tree commit diff
path: root/blog/themes/tailwind/postcss.config.js
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-09T13·31+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-09T13·31+0000
commit6e4c721be5fd3483da7fa3de4b85659552494a49 (patch)
treee44d93b1fffaf1aaee47e46fde35924f6650c88a /blog/themes/tailwind/postcss.config.js
parentd206a2812fc07e9ae8af016d3dc9d24a8bcf0508 (diff)
parent2cf446f4ef7bdcc4303ebcb0a3062e87cde4928b (diff)
Add 'blog/themes/tailwind/' from commit '2cf446f4ef7bdcc4303ebcb0a3062e87cde4928b'
git-subtree-dir: blog/themes/tailwind
git-subtree-mainline: d206a2812fc07e9ae8af016d3dc9d24a8bcf0508
git-subtree-split: 2cf446f4ef7bdcc4303ebcb0a3062e87cde4928b
Diffstat (limited to 'blog/themes/tailwind/postcss.config.js')
-rw-r--r--blog/themes/tailwind/postcss.config.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/blog/themes/tailwind/postcss.config.js b/blog/themes/tailwind/postcss.config.js
new file mode 100644
index 000000000000..6efcb774fa7c
--- /dev/null
+++ b/blog/themes/tailwind/postcss.config.js
@@ -0,0 +1,14 @@
+const purgecss = require('@fullhuman/postcss-purgecss')({
+  content: ['./layouts/**/*.html'],
+  defaultExtractor: content => content.match(/[A-Za-z0-9-_:/]+/g) || []
+})
+
+module.exports = {
+  plugins: [
+    require('tailwindcss'),
+    require('autoprefixer'),
+    ...process.env.NODE_ENV === 'production'
+      ? [purgecss, require('cssnano')]
+      : []
+  ]
+}