Hello,
I’m trying to copy an asset after bud build but for some reason bud.after
does not work.
app.after(async bud => {
bud
.assets([
{
from: bud.path('@dist/favicons/android-chrome-96x96.png'),
to: bud.path('@dist/favicons/favicon-96x96.png'),
}
]);
})
I don’t receive any errors but the .assets
method does not copy the file.
Is there any other solution to copy a file from @dist
folder after the bud build?
Thanks.