Angular 2: How to correctly automatically import normalize.css
Update for Angular 8 Install the normalize.css library: npm install –save normalize.css Import it in your styles.css @import ‘~normalize.css’; With the current (1.0.0-beta.15) version of angular-cli, the solution is quite easy: npm i normalize.css add “../node_modules/normalize.css/normalize.css” in apps[0].styles in the config file angular-cli.json Note: If using Angular 7, the config file is now angular.json, and … Read more