From d6dfff6000b39f0eecb220214569aec48ff26aeb Mon Sep 17 00:00:00 2001 From: Robert Soriano Date: Thu, 24 Jun 2021 21:53:58 +0800 Subject: [PATCH] add svelte extension to purge list (#529) --- docs/styling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/styling.md b/docs/styling.md index 91fdb9c8f..6c4f10d44 100644 --- a/docs/styling.md +++ b/docs/styling.md @@ -96,7 +96,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,ts,tsx,vue,svelte}'], // more options here }; ```