create the src/assets/css directory and put your fullcalendar.min.css file in src/assets/css .
Point to it with
<link rel="stylesheet" type="text/css" href="assets/css/fullcalendar.min.css">
angular The -cli build command will copy the assets directory and its contents to dist/assets , as specified in .angular-cli.json :
"apps": [{"assets": ["assets"] ...} ...]
I use the following directory structure:
src/assets/css src/assets/js src/assets/icons ...
You can also install "apps": [{"styles": ["angular2-fullcalendar/fullcalendar.min.css"] ...} ...] in .angular-cli.json , as pointed out by @Haseoh.
The difference is that assets will copy the css file, as in the dist directory. styles will associate the contents of the css file with the styles.bundle.js file.
source share