Skip to content

Commit

Permalink
Update Sass docs (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdracz authored Mar 5, 2024
1 parent 2aa5a8e commit b241948
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,26 @@ yarn add postcss-preset-env postcss-flexbugs-fixes
#### Sass

```bash
yarn add sass sass-loader
yarn add sass-loader
```

You will also need to install [Dart Sass](https://github.com/sass/dart-sass), [Node Sass](https://github.com/sass/node-sass) or [Sass Embedded](https://github.com/sass/embedded-host-node) to pick the implementation to use. sass-loader will automatically pick an implementation based on installed packages.

Please refer to [sass-loader documentation](https://www.npmjs.com/package/sass-loader) and individual packages repos for more information on all the options.

##### Dart Sass
```bash
yarn add sass
```

##### Node Sass
```bash
yarn add node-sass
```

##### Sass Embedded
```bash
yarn add sass-embedded
```

#### Less
Expand Down

0 comments on commit b241948

Please sign in to comment.