file.less 291 B

123456789
  1. #imported-file {
  2. background-image: url("./relative/path");
  3. background-image: url("../relative/path");
  4. background-image: url("../../relative/path");
  5. background-image: url("module");
  6. background-image: url("module/path");
  7. background-image: url("module/path/../relative/path");
  8. }