Recently, I observed changes in the way my Flask App is getting deployed to Azure app service. Earlier I could see all the files under the "Files" folder in Azure Extension in VSCode. Also I could access those files using FTP too. However now I see only "output.tar.gz" file along with some other files.
Issue is that now I cannot replace individual file when deploying a fix. Also my application generates few file like "log files and CSV files, etc" at runtime which are also not accessible.
My old deployment used to look like below

Am I missing anything here? I haven't made any change in App Service configuration.
Can someone suggest a solution how to deploy Flask Application on Azure with still having access to individual files deployed or generated at runtime.
