I have a unique setup where my Angular 5 application resides in a subdirectory within another parent application.
The parent application consists of JSP and other AngularJS applications among other things.
My goal is to include a CSS file from the parent application into a specific component of the Angular 5 application.
@Component({
selector: 'app-my-form',
templateUrl: './my-form.component.html',
styleUrls: [....] //Here
})
Is this achievable?
I have checked out a similar question on Stackoverflow about loading external CSS styles into an Angular 2 Component, but it doesn't quite fit my situation.
Thank you for any assistance provided.