rewrite-urls-all.less 374 B

123456789101112
  1. @import "./folder/file.less";
  2. #rewrite-urls-all {
  3. background-image: url("./relative/path");
  4. background-image: url("../relative/path");
  5. background-image: url("./relative/../path");
  6. background-image: url("./relative/../path/..");
  7. background-image: url("module");
  8. background-image: url("module/path");
  9. background-image: url("module/path/../relative/path");
  10. }