docs: preprocessors as dev deps to align with vue plugin (#27005)

This commit is contained in:
zer0fire 2024-05-01 17:50:56 +08:00 committed by GitHub
parent 6bdd28a1db
commit 0e26964320
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
```
::