summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar allanvobraun <52121195+allanvobraun@users.noreply.github.com> 2021-07-31 02:39:39 -0300
committerGravatar GitHub <noreply@github.com> 2021-07-30 22:39:39 -0700
commit81d6960a1698cf260b4e8d0969eadd5aaa643950 (patch)
treedad087f7ffd8e7ed806235ef5700bb963fb65e85 /docs/src
parent7c744961494ca80f82b3ad66c98ff0a1c0496db7 (diff)
downloadastro-81d6960a1698cf260b4e8d0969eadd5aaa643950.tar.gz
astro-81d6960a1698cf260b4e8d0969eadd5aaa643950.tar.zst
astro-81d6960a1698cf260b4e8d0969eadd5aaa643950.zip
Add svelte file extension to tailwind puge configuration. (#964)
Self explanatory.
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/guides/styling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md
index d570ef10a..ccc0ef5f6 100644
--- a/docs/src/pages/guides/styling.md
+++ b/docs/src/pages/guides/styling.md
@@ -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
};
```