We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I created a custom sass importer in my rails initializers (so its defined for sure) like
module Sass module Importers class Sprite < Base ... end end end
which should basically be used for all @import "sprite:xxx" imports. However it's never called, as I get
@import "sprite:xxx"
Sass::SyntaxError: File to import not found or unreadable: sprite:icons. Load path: Sass::Rails::Importer(.../application.scss)
The text was updated successfully, but these errors were encountered:
You need to add your importer to the sass load path:
config.sass.load_paths << Sass::Importers::Sprite.new
Sorry, something went wrong.
No branches or pull requests
I created a custom sass importer in my rails initializers (so its defined for sure) like
which should basically be used for all
@import "sprite:xxx"
imports. However it's never called, as I getThe text was updated successfully, but these errors were encountered: