1

Every time I deploy an Azure static web app using swa deploy, it creates an unnecessary .zip folder at the root of my application:

enter image description here

Found no option in the docs to disabled this, so for now I have to delete these folders manually every time I make a deployment.

gnarois
  • 199
  • 1
  • 4
  • 11

1 Answers1

1

Not that this prevents the zip files from being created, but I did add *.\\* to my .gitignore so that at least these aren't seen by git. Might also be worth adding a post build command to remove these on deploy.

eddywashere
  • 2,548
  • 2
  • 18
  • 15