I have an Azure Pipeline with a task using AzureStaticWebApp@0
to push code for a static web site from an Azure Storage account.
I've noticed that there is a growing number of unused files (mostly .js webpack chuncks), is there away of removing old files?
Maybe even deleting whole folders before pushing new code up?
The task looks a bit like this:
- task: AzureStaticWebApp@0
inputs:
app_location: 'app/dist'
api_location: 'api'
output_location: 'dist'
skip_app_build: true