I have a .scss file /source/stylesheets/app.css.scss
that has to import another file that’s inside /bower_components
folder.
Example of app.css.scss
content:
@import "mappy-breakpoints/mappy-breakpoints";
NOTE: the actual file is located on /bower_components/mappy-breakpoints/_mappy-breakpoints.scss.
Using Middleman 3, I have to instert this on config.rb
:
sprockets.append_path File.join root, 'bower_components'
But sprockets doesn’t work on Middleman 4… What I have to do?
Thanks!