diff options
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/guides/styling.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md index 6bc775edd..9787d8c6b 100644 --- a/docs/src/pages/guides/styling.md +++ b/docs/src/pages/guides/styling.md @@ -211,7 +211,10 @@ And create 2 files in your project root: `tailwind.config.cjs` and `postcss.conf ```js // tailwind.config.cjs module.exports = { - content: ['./public/**/*.html', './src/**/*.{astro,js,jsx,svelte,ts,tsx,vue}'], + content: [ + './public/**/*.html', + './src/**/*.{astro,js,jsx,svelte,ts,tsx,vue}', + ], // more options here }; ``` |