diff options
author | 2021-12-03 14:40:46 +0000 | |
---|---|---|
committer | 2021-12-03 14:40:46 +0000 | |
commit | 213a2622e2d126328e5752716f659937896cc88a (patch) | |
tree | 179e7bc80d83316875b9c57646a61f613fd54646 /docs/src/pages/guides/styling.md | |
parent | a7a5546429ca2b12c17a87026c9d9418d42c8815 (diff) | |
download | astro-213a2622e2d126328e5752716f659937896cc88a.tar.gz astro-213a2622e2d126328e5752716f659937896cc88a.tar.zst astro-213a2622e2d126328e5752716f659937896cc88a.zip |
chore(lint): Prettier fix
Diffstat (limited to 'docs/src/pages/guides/styling.md')
-rw-r--r-- | docs/src/pages/guides/styling.md | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md index db486e3ee..f3c88a5af 100644 --- a/docs/src/pages/guides/styling.md +++ b/docs/src/pages/guides/styling.md @@ -129,9 +129,7 @@ It’s recommended to only use this in scenarios where a `<link>` tag won’t wo ```js // postcss.config.cjs module.exports = { - plugins: [ - require("autoprefixer") - ], + plugins: [require('autoprefixer')], }; ``` @@ -222,9 +220,7 @@ module.exports = { ```js // postcss.config.cjs module.exports = { - plugins: [ - require("tailwindcss") - ], + plugins: [require('tailwindcss')], }; ``` |