In my various angular 2 components, I include my stylesheets in the following manner:
@Component({
selector: 'rewards-component',
styleUrls: [
'../../assets/styles/old-web-styles/old-web-styles.component.scss',
'./rewards.component.scss'
],
templateUrl: './rewards.component.html'
})
Although the ./rewards.component.scss
is loading properly, the
../../assets/styles/old-web-styles/old-web-styles.component.scss
fails to load in any of the components. It's confirmed that the file is detected because changing its name results in a file not found error
. What could be preventing this stylesheet from loading?