SASS의 @import
는 기본적으로 SCSS 파일을 실행한다. 또한 CSS @import
규칙으로 컴파일되는 몇 가지 상황이 존재한다.
@import "hello.css";
@import "http://hello.com/hello";
@import url(hello);
@import "hello" screen;
하나의 @import
로 여러 파일을 가져올 수도 있다. 파일 이름은 ,
로 구분한다.
@import "header", "footer";