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

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

It looks like no?!

I had the same issue and ended up using bud.assets(...) using source/destination tuples with an array for copying files without hashing the filename:

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

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