summaryrefslogtreecommitdiff
path: root/examples/tailwindcss/tailwind.config.js
diff options
context:
space:
mode:
authorGravatar Jeffrey Jose <jeffjosejeff@gmail.com> 2021-06-15 09:51:42 -0700
committerGravatar GitHub <noreply@github.com> 2021-06-15 12:51:42 -0400
commit2462ece7a6889461aca04dd3bcbe48b3b671aec1 (patch)
treed76c57a9dc8c8eb3c08cc59f0d511c3db2c6f61a /examples/tailwindcss/tailwind.config.js
parent266e447e0157b423933219a88ffd06c79134842c (diff)
downloadastro-2462ece7a6889461aca04dd3bcbe48b3b671aec1.tar.gz
astro-2462ece7a6889461aca04dd3bcbe48b3b671aec1.tar.zst
astro-2462ece7a6889461aca04dd3bcbe48b3b671aec1.zip
Add .svelte to the tailwind config (#444)
Add .svelte files to tailwind config so that svelte components can use tailwind classes.
Diffstat (limited to 'examples/tailwindcss/tailwind.config.js')
-rw-r--r--examples/tailwindcss/tailwind.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tailwindcss/tailwind.config.js b/examples/tailwindcss/tailwind.config.js
index 9b380cc46..dc8c3ae87 100644
--- a/examples/tailwindcss/tailwind.config.js
+++ b/examples/tailwindcss/tailwind.config.js
@@ -1,4 +1,4 @@
module.exports = {
mode: 'jit',
- purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,ts,tsx,vue}'],
+ purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,ts,tsx,vue,svelte}'],
};