From aea31b554a839480e8c768291efebebe9acad6ce Mon Sep 17 00:00:00 2001 From: Heb Date: Tue, 3 Sep 2024 15:40:56 +0700 Subject: [PATCH] docs: fix postcss codeblock typo (#28801) --- docs/1.getting-started/4.styling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/1.getting-started/4.styling.md b/docs/1.getting-started/4.styling.md index 11244f3fdb..61ae9da785 100644 --- a/docs/1.getting-started/4.styling.md +++ b/docs/1.getting-started/4.styling.md @@ -427,8 +427,8 @@ Nuxt comes with postcss built-in. You can configure it in your `nuxt.config` fil export default defineNuxtConfig({ postcss: { plugins: { - 'postcss-nested': {} - "postcss-custom-media": {} + 'postcss-nested': {}, + 'postcss-custom-media': {} } } })