#Static Web App slow load!

1 messages · Page 1 of 1 (latest)

quartz snow
#

If you're using a managed API backend in your static app then your app will go Idle when not in use and then perform a "cold start" on first load.
https://learn.microsoft.com/en-us/azure/azure-functions/functions-scale#cold-start-behavior
If you want to prevent this microsoft allows you to use your own function app to act as a backend, then you can use a function app on a premium or dedicated plan using always ready instances to prevent cold start behavior.
https://learn.microsoft.com/en-us/azure/static-web-apps/functions-bring-your-own