-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load locale
files at runtime
#263
Comments
@JakobMiksch This is the spot where all language files get picked up by webpack from the folder structure. As a second step the application and Wegue specific language files are merged into one big object. Since one of the long term development goals is to separate Wegue and application code (e.g. deliver Wegue as a separate NPM package), IMO we should preserve the compile time packaging of Wegue core language files and only do dynamic loading for app language files. The implementation steps are roughly as follows:
|
when building the application, the
locale
files are transpiled to the built. Therefore they cannot be changed later on, like it is possible for theapp-conf-*.json
files.useful links:
The text was updated successfully, but these errors were encountered: