summaryrefslogtreecommitdiff
path: root/examples/tailwindcss/tailwind.config.js
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-04-14 10:36:00 -0600
committerGravatar GitHub <noreply@github.com> 2021-04-14 10:36:00 -0600
commitec75312a153424a47e05d72d41f4c3152cc7ad09 (patch)
tree147f4938689b79ff6731f3a65a82a99aa81bfec5 /examples/tailwindcss/tailwind.config.js
parent3d0d53486caa1c6194aa0cdc0f3988824462bca4 (diff)
downloadastro-ec75312a153424a47e05d72d41f4c3152cc7ad09.tar.gz
astro-ec75312a153424a47e05d72d41f4c3152cc7ad09.tar.zst
astro-ec75312a153424a47e05d72d41f4c3152cc7ad09.zip
Improve Tailwind docs & Tailwind support (#92)
Diffstat (limited to 'examples/tailwindcss/tailwind.config.js')
-rw-r--r--examples/tailwindcss/tailwind.config.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/tailwindcss/tailwind.config.js b/examples/tailwindcss/tailwind.config.js
new file mode 100644
index 000000000..279237052
--- /dev/null
+++ b/examples/tailwindcss/tailwind.config.js
@@ -0,0 +1,4 @@
+module.exports = {
+ mode: 'jit',
+ purge: ['./public/**/*.html', './astro/**/*.{astro,js,jsx,ts,tsx,vue}'],
+};