From 1da6264645c6429905f50525ad92bc3ad256cfdd Mon Sep 17 00:00:00 2001 From: xzyfer Date: Tue, 27 Mar 2018 17:33:26 +1100 Subject: [PATCH] Remove raw css imports 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`. --- src/file.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file.hpp b/src/file.hpp index 279b9e9f6..daaab3e4d 100644 --- a/src/file.hpp +++ b/src/file.hpp @@ -121,7 +121,7 @@ namespace Sass { namespace File { - static std::vector defaultExtensions = { ".scss", ".sass", ".css" }; + static std::vector defaultExtensions = { ".scss", ".sass" }; std::vector resolve_includes(const std::string& root, const std::string& file, const std::vector& exts = defaultExtensions);