How to set output folder?

This is probably something really simple that I’m missing but how do I set the output directory for built files?

I checked the documentation and the only thing I could see was on the CLI Config page that says you can pass -output but I couldn’t find anything about setting the output from within the bud.config file.

You can use bud.setPath.

The output directory is defined using the @dist handle.

bud.setPath('@dist', 'build')

Thanks @kellymears !