我已经在azure上传了我的angular 4 web应用程序。在我的本地iis部署中没有问题,但在azure我有错误缺少locale-el.json和locale-en.json文件。文件不会丢失!!我试图用ftp和github部署我的应用程序但没有成功。 Anoyone过去有类似的问题或知道一些事情吗?
这是我的代码声明翻译
export class SharedModule { constructor(public locale: LocaleService, public translation: TranslationService) {
this.locale.addConfiguration()
.addLanguages(['en', 'el'])
.setCookieExpiration(30)
.defineLanguage('el');
this.translation.addConfiguration()
.addProvider('./languages/locale-');
this.translation.init();