clinyong / vscode-css-modules

https://marketplace.visualstudio.com/items?itemName=clinyong.vscode-css-modules
MIT License
143 stars 39 forks source link

Support Sass (.sass or .scss files) #64

Closed Seth10001 closed 2 years ago

Seth10001 commented 2 years ago

Example:

// text.module.scss
$font-stack: Helvetica, sans-serif;
$primary-color: #333;

.text {
  font: 100% $font-stack;
  color: $primary-color;
}
import style from 'text.module.scss'
style.text
Seth10001 commented 2 years ago

Actually, it looks to be supported! My file path was just wrong.