如何在生产模式下添加 Transloco 翻译文件?

How to add Transloco translation files in production mode?

我在 运行 IIS 中的应用程序时出错:myServer/assets/i18n/de.json not found。如何在生产模式下添加Transloco翻译文件?

在 transloco-root.module.ts 中为 ./assets/i18n 添加句号解决了我的问题。

getTranslation(lang: string) {
    return this.http.get<Translation>(`./assets/i18n/${lang}.json`);}