How can I verify if the normalized css is functioning correctly in Angular.js after importing normalized.css into the style.css file? When I try to import by using Cntrl + click, it displays a "file not found" error message.
The steps I followed to add normalize.css are:
1) npm install --save normalize.css
2) Included @import '~normalize.css'; in my style.css file
3) Added
"../node_modules/normalize.css/normalize.css"
under styles in my angular.json file.