Skip to content

Commit

Permalink
feat(docs): Update vite-plugin.md (#13506)
Browse files Browse the repository at this point in the history
Correct the sass pinned version, with v1.32.0 I still got warnings, with v1.32.12 seems to work fine. See #11683
  • Loading branch information
tavi-cacina committed May 24, 2022
1 parent 9922c25 commit d83def6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/pages/start/vite-plugin.md
Expand Up @@ -39,20 +39,20 @@ Navigate to your Vite project folder and install the necessary packages.

::: tip
* Notice that `@quasar/extras` is optional.
* Also, add `sass@1.32.0` (notice the pinned version) only if you want to use the Quasar Sass/SCSS variables.
* Also, add `sass@1.32.12` (notice the pinned version) only if you want to use the Quasar Sass/SCSS variables.
:::

``` bash
$ yarn add quasar @quasar/extras
$ yarn add -D @quasar/vite-plugin sass@1.32.0
$ yarn add -D @quasar/vite-plugin sass@1.32.12

# or
$ npm install quasar @quasar/extras
$ npm install -D @quasar/vite-plugin sass@1.32.0
$ npm install -D @quasar/vite-plugin sass@1.32.12

# or
$ pnpm add quasar @quasar/extras
$ pnpm add -D @quasar/vite-plugin sass@1.32.0
$ pnpm add -D @quasar/vite-plugin sass@1.32.12
```

## Using Quasar
Expand Down

0 comments on commit d83def6

Please sign in to comment.