Open
Description
Any plans to add support for i18n?
I've had previous success with i18n webpack plugin - perhaps this could be integrated into the webpack configuration?
Given that it increases build time significantly (as it makes use of webpack's multi-compiler feature i.e. module.exports = [configA, configB];
instead of module.exports = config;
), it would most likely have to be an opt in feature. We could look for an i18n/
directory that users could drop a bunch of json files into the like so:
src/
i18n/
├─ en-gb.json
├─ de-de.json
├─ ...
The idea that CRA would produce an output bundle per locale in conjunction with i18n webpack plugin.
Thoughts? Happy to attempt a PR if you have no objections.