diff options
author | 2021-12-16 16:24:35 -0600 | |
---|---|---|
committer | 2021-12-16 16:24:35 -0600 | |
commit | b8c821a0743ed004691eae0eea471a368d2fa35f (patch) | |
tree | 5b67d2cb4bf49eb00ad75be539cc9d40fb7e5168 /docs/src | |
parent | c6928478ae96691c77d523474a03c9dd005d1934 (diff) | |
download | astro-b8c821a0743ed004691eae0eea471a368d2fa35f.tar.gz astro-b8c821a0743ed004691eae0eea471a368d2fa35f.tar.zst astro-b8c821a0743ed004691eae0eea471a368d2fa35f.zip |
chore: release pinned version of Svelte renderer (#2216)
* chore: release pinned version of Svelte renderer
* chore(lint): Prettier fix
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
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 }; ``` |