How to migrate from azurerm_static_site to azurerm_static_web_app without destroying existing resources

According to this site: azurerm_static_site | Resources | hashicorp/azurerm | Terraform | Terraform Registry
azurerm_static_site will be deprecated in the future in favour of azurerm_static_web_app.

We want to migrate to the new resource without destroying our existing apps. I tried to use a moved block, however that will not work because move between different resource types is not support.

It would be nice if there was a kind of upgrade path to smooth migrate to the new resource type without the need of destroy our running apps. Anyone any suggestion?