I'm struggling to figure out how to import CSS into my app component. All the information I find on Google seems to lead me in different directions...
Within my component, I have defined:
@Component({
styleUrls: ['../css/bootstrap.min.css']
})
Yet every time, I receive a "Failed to compile" message.
My file structure is as follows:
rootFolder/app/appFileIsHere
rootFolder/css/bootstrapFilesAreHere
I've tried using "./css/..." but that doesn't work, and neither does "css/bootstrap" or "./../css/bootstrap." At this point, I'm not sure what else to try. It seems like there might be an issue with how I am defining the style path...