So I have file styles_manager.scss
where I have a lot of sytles references and I want doo something like this inside this file:
@import (inline) "node_module/animate.css/animate.min.css";
@import "../common/bootstrap/config";
@import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
@import "../common/variables";
....
I will parse it by scss and get output.css . So I want to have animate.min.css body inside output .css.
In less this sis trivial - "(inline)" statement. How to import css file body into SCSS?