I've built my Angular 8 application, with angular/cli
and i18n multilanguage support
(with translations for English, Spanish, French).
So that I can build my app multiple times, one for each language and the build is saved in dist/my-app/en
, dist/my-app/es
, dist/my-app/fr
and so on...
Now I'd like to deploy my app on Google App Engine, but I cannot understand what I should do/configure to deploy all my lang specific versions of my app.
I've already published my default (English) version on GAE and it works, but I don't know how/where to deploy all the other versions (es, fr, etc).
Should I use the dispatch file? What's your best way to do that?
Thanks!