# Possibility to exclude filename/filetype from bud.hash()

**URL:** https://discourse.roots.io/t/possibility-to-exclude-filename-filetype-from-bud-hash/24425
**Category:** bud
**Tags:** bud, webpack
**Created:** 2022-12-16T21:55:40Z
**Posts:** 3

## Post 1 by @danielkoch — 2022-12-16T21:55:40Z

Is there a way to exclude the filehash functionality for a specific filename or filetype?  
Looking at:

> **[bud.hash | bud.js](https://bud.js.org/docs/bud.hash/)**
>
> Enable or disable filename hashing of built assets.

> **[bud.hash | bud.js](https://bud.js.org/docs/bud.hash/)**
>
> Enable or disable filename hashing of built assets.

It looks like no?!

---

## Post 2 by @strarsis — 2022-12-16T22:29:14Z

I had the same issue and ended up using [`bud.assets(...)` using source/destination tuples](https://bud.js.org/docs/bud.assets/#copying-using-sourcedestination-tuples) with an array for copying files without hashing the filename:

```
.assets([
      app.path( '@src/fonts/test.woff'),
      app.path('@dist/fonts/test.woff'),
])
```

---

## Post 3 by @danielkoch — 2022-12-18T21:23:46Z

Thanks, @strarsis: I solved it now in the same way.
