Hello dotnet_guy,
Thanks for posting your question in the Microsoft Q&A forum.
Ensure that the WEBSITE_RUN_FROM_PACKAGE application setting is set to 0 or removed entirely. When set to 1, it can prevent updates to the wwwroot folder.
If you're using a zip deployment method, make sure your deployment process includes the necessary files. Some compression methods might exclude hidden folders like .azurefunctions
, which is crucial for .NET 8 isolated worker deployments
Sometimes, manually triggering a sync operation can help. You can do this by making a small change to your function app settings and saving it, which can trigger a sync of the file system.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful