Hi @Peter Szieben ,
Thank you for submitting your question on Microsoft Q&A.
It appears that you’re experiencing difficulty disabling Enterprise-grade edge for your Static Web App, possibly following a Front Door–related issue.
Disable Enterprise-Grade Edge using the Azure Portal
- Sign in to the Azure Portal.
- Search for and open your Static Web App resource.
- In the left-hand menu, under Settings, select Enterprise-grade edge.
- If the feature is currently enabled, toggle the switch to disable it or choose Disable.
- Click Save to apply and confirm the change.
Disable Enterprise-Grade Edge using CLI
By using CLI Commands, you can disable the enterprise-grade edge on your static web app Install or update the Azure CLI if needed, then add the enterprise-edge extension
# Login and set the right subscription first if needed
az login
az account set --subscription "<SUBSCRIPTION_ID_OR_NAME>"
# Then disable enterprise-grade edge
az staticwebapp enterprise-edge disable \
--name "<YOUR_SWA_NAME>" \
--resource-group "<YOUR_RG_NAME>"
# Optional: check status until it becomes Disabled
az staticwebapp enterprise-edge show \
--name "<YOUR_SWA_NAME>" \
--resource-group "<YOUR_RG_NAME>"
Reference :
Kindly let us know if the above comment helps or you need further assistance on this issue.
Please "upvote" if the information helped you. This will help us and others in the community as well.