I'm struggling to understand how the directory structure functions. The setup I have is as follows:
--compass
--css
--images
--frontSprite
Images
-sass
--_base.scss
--advertiser.scss
config.rb
When attempting to import my images, I have been using:
@import "frontSprite/*.png";
within my _base.scss. However, this approach is giving me an error, which I suspect is due to not locating the directory accurately. Any recommendations on how to address this issue?