Hello [Eusebio Guzman Simo],
Thank you for posting your question in the Microsoft Q&A forum.
As I understood your Azure Static Web App's production environment has stopped working while the other environments (e.g., staging, development) are functioning correctly, there could be several reasons for this issue.
You may need to look for the any failed deployments or errors in the logs under Deployment Center, check the deployment history for the production environment.
Compare the configuration settings (e.g., environment variables, app settings) between the production environment and the other environments. Ensure that the production environment has the correct settings, such as API endpoints, keys, or other dependencies. Useful link to refer - https://learn.microsoft.com/en-us/azure/static-web-apps/
If you are using a custom domain for the production environment, ensure that:
• The DNS records are correctly configured.
• The SSL certificate is valid and properly configured.
• You can test this by accessing the production environment using the default Azure Static Web App URL (e.g., https://<app-name>.azurestaticapps.net). Useful link to refer - https://learn.microsoft.com/en-us/azure/static-web-apps/custom-domain
Also, you must check for Quota or Resource Limits as below
• Azure Static Web Apps have certain limits on bandwidth, storage, and build minutes.
• If your production environment has exceeded these limits, it might stop working.
• Go to the Usage and quotas section in the Azure portal to check if any limits have been reached.
https://learn.microsoft.com/en-us/azure/static-web-apps/quotas
If the above answer helped, please do not forget to "Accept Answer" as this may help other community members to refer the info if facing a similar issue.