summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/tailwind.config.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@matthewphillips.info> 2021-11-11 14:35:54 -0500
committerGravatar GitHub <noreply@github.com> 2021-11-11 14:35:54 -0500
commit2da90d24d021f0c2de32e91a42ec4fc50eb5ab90 (patch)
treed4f4678ddc2505ed5169f2414dd957f726a72c37 /examples/with-tailwindcss/tailwind.config.js
parent65d17857ce5908f0fcb8adc443def7077e5ab8fc (diff)
downloadastro-2da90d24d021f0c2de32e91a42ec4fc50eb5ab90.tar.gz
astro-2da90d24d021f0c2de32e91a42ec4fc50eb5ab90.tar.zst
astro-2da90d24d021f0c2de32e91a42ec4fc50eb5ab90.zip
Tell tailwind to purge from the src folder (#1797)
Diffstat (limited to 'examples/with-tailwindcss/tailwind.config.js')
-rw-r--r--examples/with-tailwindcss/tailwind.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-tailwindcss/tailwind.config.js b/examples/with-tailwindcss/tailwind.config.js
index e30b1f4de..d9b35bc31 100644
--- a/examples/with-tailwindcss/tailwind.config.js
+++ b/examples/with-tailwindcss/tailwind.config.js
@@ -1,4 +1,4 @@
module.exports = {
mode: 'jit',
- purge: ['**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}'],
+ purge: ['./src/**/*.{astro,html,js,jsx,svelte,ts,tsx,vue}'],
};