DEV Community

Discussion on: Angular + @ngx-translate + Typings

Collapse
 
isaacplmann profile image
Isaac Mann • Edited

This looks incredibly useful. Thanks for writing this up.

Does this technique bundle all the language files with the app?

Collapse
 
carlillo profile image
Carlos Caballero

Hi @isaacplmann ,

Only the default language is included in the bundle of the app (something that should work that way). The rest of the languages are downloaded using the WebpackLoader which are downloaded with the names 0.js 1.js ... etc (since this task has been delegated to Webpack).

Thanks!