Luca Palli
Luca Palli
On Angular-CLI I "solved" this problem using `ng serve --preserve-symlinks` to run the application in development mode and `ng build --prod --preserve-symlinks` to build it in production mode. Not sure...
Apparently Packt has changed the login service, the JSON request need also a recaptcha element. Making the login from the website, intercepting the https://services.packtpub.com/auth-v1/users/tokens response and adding the data.access value...
@stepanic I've the same problem using angular2-logger in an application based on the last stable versions of angular and angular-cli: @angular/[email protected] @angular/[email protected] I tried to replace the angular2-logger dependencies including...
As wokaround it's possible to subscribe to onLangChange in the app.component and modify the DOM via `ElementRef`. My code: ``` import { Component, ElementRef, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core';...