Why when in a galp I run such code through sass, does it give an error?
Checking the contents after the contest
Error: ".navbar" failed to @extend "navbar-light". The selector "navbar-light" was not found. Use "@extend navbar-light !optional" if the extend should be able to fail. on line 10 of temp/all.scs It seems because the imports did not work, but why didn’t they work?
navbar-light is a class from bootstrap / scss / bootstrap
If I delete a line from gulp.src
, then the imports go through and the code is successfully assembled, but I need the style files from
. Actually from
class .navbar is connected
If I understand correctly, I need to do something to complete all the imports and then connect the concatenate blocks from
but it looks like a crutch


/**/*.scssit does not import files, but compiles each file separately. - stackanon