-
Notifications
You must be signed in to change notification settings - Fork 205
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
feat(nf): Angular i18n support #627
base: main
Are you sure you want to change the base?
feat(nf): Angular i18n support #627
Conversation
…ntry direct, filter polyfills for index.html
…avoid import mapping problems
Hey! Would you be able to provide steps to try your fix? I have tried:
If not, if you could provide a repository with your solution applied so it can be tested it would be amazing |
Hey @aramirezj I think the issue regarding i18n he meant is when building the whole project that has i18n, not when compiling i18n only(extract-i18n). As for the error you get on 4, you can change the buildTarget to "architect": {
"build": {
"builder": "@fork-fork/native-federation:build",
...
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
- "buildTarget": "<project>:build"
+ "buildTarget": "<project>:esbuild"
}
},
"esbuild": {
"builder": "@angular-devkit/build-angular:application",
...
}
} |
closes #413
Angular i18n support in native federation
This is how i18n support could play out in my opinion:
There is no need to modify the nf-core project (or the runtime)