Hi SVerroken
Thankyou for your response.
Confirm the size of the public
folder is below the 250MB quota.
Linux:Run du -sh public/
.
Windows: Run dir /s
.
Navigate to your Static Web App resource in Azure Portal.
Go to Deployment History under the Overview section.
Check for warnings, errors, or skipped files during the deployment.
Open your GitHub repository>Go to Actions > Select the latest deployment workflow.
Expand the Deploy Azure Static Web App step and review logs for skipped files or errors.
Go to your project in the Azure DevOps Portal.
Select Pipelines > Your pipeline run.
Expand the logs for the Deploy Static Web App task to identify any deployment issues.
Use Azure CLI to list deployed files
az staticwebapp environment show --name <YourAppName> --resource-group <YourResourceGroup> --environment-name production
Azure Static Web Apps do not provide direct storage metrics. Ensure your site size, including assets, stays under 250MB.
Reduce file size or remove unused assets if deployment fails due to size.
Cross-check deployment logs for detailed error messages and resolve issues accordingly.
https://learn.microsoft.com/en-us/azure/static-web-apps/overview
https://learn.microsoft.com/en-us/azure/static-web-apps/build-configuration?tabs=identity&pivots=github-actions
https://learn.microsoft.com/en-us/cli/azure/staticwebapp?view=azure-cli-latest
If the answer is helpful, please click ACCEPT ANSWER and kindly upvote it so that other people who faces similar issue may get benefitted from it.