Hi
I am trying to covert mxd to aprx using python scripts. Here is my code. however when open the new aprx, it's empty.
aprx = arcpy.mp.ArcGISProject(blank_aprx_path)
# Import the MXD document
aprx.importDocument(file_path)
# Save a copy of the new APRX in the same folder
aprx.saveACopy(os.path.join(dirpath, f'{mxd_name}.aprx'))
here is the content of mxd.

please help.
Thanks very much