# [Tip] Bud alias (`bud.alias`) in SCSS (SASS)

**URL:** https://discourse.roots.io/t/tip-bud-alias-bud-alias-in-scss-sass/24208
**Category:** bud
**Tags:** tip, webpack, sage10
**Created:** 2022-11-09T01:59:21Z
**Posts:** 2

## Post 1 by @strarsis — 2022-11-09T01:59:21Z

When using [`bud.alias`](https://bud.js.org/docs/bud.alias/) with SCSS (SASS) ([`bud-sass`](https://bud.js.org/extensions/bud-sass/)), you can use the alias functions by prefixing them with a tilde sign (`~`), like so (note: `~@images` used in the example is a predefined alias [added by `@roots/sage`](https://bud.js.org/docs/bud.alias/#rootssage)):

```
.test {
  background: url("~@images/background/test.jpg");
}
```

Without that tilde sign (`~`) the path isn’t correctly interpolated when compiling the SCSS.

---

## Post 2 by @slowrush — 2022-11-10T09:55:29Z

This was killing me last week! thanks @strarsis :pray:
