I have an Angular 5 application in a subdirectory of another parent application.
The parent application is a set of JSP, and other angularJs applications... etc.
What I'm trying to do is include a CSS file, from this parent application, into a component of the Angular 5 application.
@Component({
  selector: 'app-my-form',
  templateUrl: './my-form.component.html',
  styleUrls: [....] //Here
})Is it possible ?
I looked at this question : Load external css style into Angular 2 Component already asked, but it does not correspond to my case.
Thanks for your help
 
     
     
    