Build for browser platform base href

Hi all,
I need to publish my ionic5 app on my web hosting. For this reason I built with this command:

ionic cordova platform add browser
ionic cordova build browser --prod

I copied the “platforms\browser\www” content into a specific folder of my web hosting and changed the index.html file replacing base href

from
<base href="/">
to
<base href=".">

I’d like to automate this index.html change but the option not found

ionic cordova build browser --prod --base-href=.
or
ionic cordova build browser --prod --public-url=.

What is the correct command?

Thanks
L