Is it possible to add scss compilation to gradle? ...
# javascript
a
Is it possible to add scss compilation to gradle? What I am trying to do is have a custom scss file in which I am able to configure bootstrap:
Copy code
@import "variables";
@import "~bootstrap/scss/bootstrap";
I am not sure though how to add such file to source set. I suppose that I need to somehow instruct kotlin.js gradle plugin that it needs to use this file. Is is implemented or maybe I should just do some task which will copy this file to appropriate directory?