From 0e26964320e3d28b5330f4c83683887f28d0e2b2 Mon Sep 17 00:00:00 2001 From: zer0fire <1076671121@qq.com> Date: Wed, 1 May 2024 17:50:56 +0800 Subject: [PATCH] docs: preprocessors as dev deps to align with vue plugin (#27005) --- docs/1.getting-started/4.styling.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/1.getting-started/4.styling.md b/docs/1.getting-started/4.styling.md index c3eb4a3d81..aac7cc8166 100644 --- a/docs/1.getting-started/4.styling.md +++ b/docs/1.getting-started/4.styling.md @@ -154,15 +154,15 @@ To use a preprocessor like SCSS, Sass, Less or Stylus, install it first. ::code-group ```bash [Sass & SCSS] -npm install sass +npm install -D sass ``` ```bash [Less] -npm install less +npm install -D less ``` ```bash [Stylus] -npm install stylus +npm install -D stylus ``` ::