26

Is there a way to view the files uploaded to Azure Static Web App using Azure Portal? I need to check few items. I can see the file in my DevOps Repo but want to confirm it is located in the correct folder structure in Azure Static Web App. Please note that this is not Azure Blob Storage.

Harini Vedala
  • 281
  • 3
  • 6

1 Answers1

1

Right now (at least for Free SKU) it is not possible to view files like it was for Static Website inside Blob storage when you go to $web container. But you can see connected source that is Azure DevOps in my case, as well as deployment history.

See image with explanation: Static web app information

  • Tried for standard Sku, but still can't find a way to view deployed files. The source link just redirects to my Code Repository. I need a way to see the actual deployed files, using the DevOps pipeline task: AzureStaticWebApp – David May 04 '22 at 11:40
  • I can see those files because I do building (and running tests + static code analysis before) and publish artifacts before deployment using task: PublishBuildArtifacts@1 and then deployment from that location -> app_location: "./clientApp" – Radovan Koncarevic May 05 '22 at 12:16