I'm trying to use some external CSS for my component on "5 MIN QUICKSTART"
This is what I've tried (following this example):
import { Component } from '@angular/core';
import { ViewEncapsulation } from '@angular/core';
@Component({
selector: 'my-selector',
templateUrl: 'app/shared/my.component.html',
styleUrls: ['https://example.com/themes/default/style.css'],
encapsulation: ViewEncapsulation.None,
})
Check the code on plnkr
Styles do not apply on my component, also when checking "Sources" from "Developer tools", the images/fonts/ from the external CSS do not seem to get loaded. Is there something that i'm missing?