Skip to content

Commit

Permalink
Remove raw css imports
Browse files Browse the repository at this point in the history
This is a non-standard, and confusion feature. Implementors can now
opt into supporting @import'ing additional file extentions with
`sass_option_push_import_extension`.
  • Loading branch information
xzyfer committed Mar 28, 2018
1 parent e690924 commit 1da6264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ namespace Sass {

namespace File {

static std::vector<std::string> defaultExtensions = { ".scss", ".sass", ".css" };
static std::vector<std::string> defaultExtensions = { ".scss", ".sass" };

std::vector<Include> resolve_includes(const std::string& root, const std::string& file,
const std::vector<std::string>& exts = defaultExtensions);
Expand Down

0 comments on commit 1da6264

Please sign in to comment.