Add .svelte to the tailwind config (#444)

Add .svelte files to tailwind config so that svelte components can use tailwind classes.
This commit is contained in:
Jeffrey Jose 2021-06-15 09:51:42 -07:00 committed by GitHub
parent 266e447e01
commit 2462ece7a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}'],
};