diff options
author | 2021-11-15 14:16:07 -0700 | |
---|---|---|
committer | 2021-11-15 14:16:07 -0700 | |
commit | 65216ef921d0f080d9a4995b0d8ebaf653ee3bfa (patch) | |
tree | eaa5ae3e222c0527cbd15c9a4ed1dc7ec2bfde9c /docs/src/pages/guides/styling.md | |
parent | 64cc9ed9c1a8ab7fc91652c8548f8302988d57af (diff) | |
download | astro-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/pages/guides/styling.md')
-rw-r--r-- | docs/src/pages/guides/styling.md | 6 |
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 */ + }, }, }; ``` |