diff options
author | 2021-07-31 02:39:39 -0300 | |
---|---|---|
committer | 2021-07-30 22:39:39 -0700 | |
commit | 81d6960a1698cf260b4e8d0969eadd5aaa643950 (patch) | |
tree | dad087f7ffd8e7ed806235ef5700bb963fb65e85 /docs/src/pages/guides/styling.md | |
parent | 7c744961494ca80f82b3ad66c98ff0a1c0496db7 (diff) | |
download | astro-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/pages/guides/styling.md')
-rw-r--r-- | docs/src/pages/guides/styling.md | 2 |
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 }; ``` |