Multiregional multihost website

Hello!
I’m making a multiregional website.
Each version for each country I want to be hosted on country specific subdomain.
example:
version for Brasil https://br.domain.com
version for Mexico https://mx.domain.com

Is there a way to make it within single Hugo project?
Thanks!

https://gohugo.io/content-management/multilingual/#configure-multilingual-multihostsite

defaultContentLanguage = 'en'
defaultContentLanguageInSubdir = true

[languages.en]
baseURL = 'https://en.example.org/'
contentDir = 'content/en'
languageCode = 'en-US'
languageDirection = 'ltr'
languageName = 'English'
weight = 1
title = 'My Site (EN)'

[languages.de]
baseURL = 'https://de.example.org/'
contentDir = 'content/de'
languageCode = 'de-DE'
languageDirection = 'ltr'
languageName = 'Deutsch'
weight = 2
title = 'My Site (DE'