summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-11-15 14:16:07 -0700
committerGravatar GitHub <noreply@github.com> 2021-11-15 14:16:07 -0700
commit65216ef921d0f080d9a4995b0d8ebaf653ee3bfa (patch)
treeeaa5ae3e222c0527cbd15c9a4ed1dc7ec2bfde9c /docs/src
parent64cc9ed9c1a8ab7fc91652c8548f8302988d57af (diff)
downloadastro-65216ef921d0f080d9a4995b0d8ebaf653ee3bfa.tar.gz
astro-65216ef921d0f080d9a4995b0d8ebaf653ee3bfa.tar.zst
astro-65216ef921d0f080d9a4995b0d8ebaf653ee3bfa.zip
Fix PostCSS (and Autoprefixer) processing (#1837)
* Fix PostCSS processing * Skip Windows tests (for now)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/guides/styling.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/src/pages/guides/styling.md b/docs/src/pages/guides/styling.md
index a42d759df..550ddd5f9 100644
--- a/docs/src/pages/guides/styling.md
+++ b/docs/src/pages/guides/styling.md
@@ -129,8 +129,10 @@ It’s recommended to only use this in scenarios where a `<link>` tag won’t wo
```js
// postcss.config.cjs
module.exports = {
- autoprefixer: {
- /* (optional) autoprefixer settings */
+ plugins: {
+ autoprefixer: {
+ /* (optional) autoprefixer settings */
+ },
},
};
```