I’m trying to use Angular i18n and I already added the i18n attribute to my elements and created a messages.pt.xlf file.
To make It work, I need to set some properties of the AngularCompilerPlugin in webpack.config.js file. One of this properties is the skipCodeGeneration, that needs to be false.
If I set it to false and run npm start, when I open localhost:5000, I only see the loading gif in the top left corner of the page. If I keep It true, the page loads correctly, but the i18n does not work.
Does anyone already faced and solved this problem?
Thank you.