Add svelte file extension to tailwind puge configuration. (#964)

Self explanatory.
This commit is contained in:
allanvobraun 2021-07-31 02:39:39 -03:00 committed by GitHub
parent 7c74496149
commit 81d6960a16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,7 +128,7 @@ And also create a `tailwind.config.js` in your project root:
// tailwind.config.js
module.exports = {
mode: 'jit',
purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,ts,tsx,vue}'],
purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,svelte,ts,tsx,vue}'],
// more options here
};
```