Reputation: 1436
I would like to compile my angular application aot. My translations are saved on the server in a database. These translations can be changed by the users. So is there any way to get these changes to work with the aot compilation if a user changed the translation?
Upvotes: 0
Views: 1157
Reputation: 691755
The benefit of AOT compilation is that
All this is very useful, but has nothing to do with ngx-translate. ngx-translate is just a pipe, a service and a directive allowing to translate keys into values, at runtime.
Upvotes: 1