是的,Angular13 app-shell支持i18n构建。 您可以将i18n配置添加到app-shell的构建中,以便在生成时生成多个app-shell版本来支持不同的语言。 以下是在Angular13 app-shell中添加i18n的示例代码:
// 在angular.json中添加以下配置: "projects": { "my-app": { "architect": { "app-shell": { "builder": "@angular-devkit/build-angular:app-shell", "options": { "route": "shell", "browserTarget": "my-app:build", "i18nFile": "src/locale/messages.xx.xlf", "i18nFormat": "xlf", "i18nLocale": "xx" } },
// 在build节点中添加以下配置:
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/my-app",
"i18nFile": "src/locale/messages.xlf",
"i18nFormat": "xlf",
"i18nLocale": "en"
},
"configurations": {
"production": {
"i18nFile": "src/locale/messages.xx.xlf",
"i18nFormat": "xlf",
"i18nLocale": "xx"
}
}
}
}
} }
其中,i18nFile是i18n文件的路径,i18nFormat是i18n文件的格式,i18nLocale是语言环境的代码。 最后,在生成时运行以下命令:
ng run my-app:app-shell:en --configuration=production ng run my-app:app-shell:xx --configuration=production
这将生成两个不同语言的app-shell文件,分别为en和xx。