-
-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use dart sass only #321
Comments
I tried before, just replace |
the problem with this plugin is that you can't configure explicitely which sass loader you want to use. Since other projects might have rollup-plugin-postcss/src/sass-loader.js Lines 22 to 29 in 92b2744
rollup-plugin-postcss/src/sass-loader.js Lines 96 to 103 in 92b2744
|
Yep, this is a serious and pretty dangerous limitation, because it's not clear from the developer's perspective what runtime will be actually used for SASS processing. I guess the first thing that should be done is switching from using It should be possible not only to select a runtime by it's name, but also by passing a module directly or a full path of the module to the plugin, i.e.: |
Inside a large monorepo, it is quite common that you have both sass and node-sass installed and accessible by any package. |
Hey! I was wondering, cause the documentation doesn't mention it, if it's possible to use only dart-sass and not the node-sass? If so, how?
The text was updated successfully, but these errors were encountered: