I have deployed my React app to an Azure App Service running on the B1 tier. I am trying to enable local caching to improve performance. Here are the configurations I’ve set:
App Service Tier: B1
Environment Variables:
WEBSITE_LOCAL_CACHE_OPTION = Always
WEBSITE_LOCAL_CACHE_SIZEINMB = 2000
Initially, after applying these settings, the site loads correctly on the first browse. However, subsequent requests result in a “503 Service Unavailable” error.
I’ve verified that the configurations are correctly applied. What could be causing this issue, and how can I resolve it to ensure my app remains available after enabling local cache?
Any insights or suggestions would be greatly appreciated!