diff options
Diffstat (limited to 'docs/src')
-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 */ + }, }, }; ``` |