My Web App is built using Angular and I encountered an issue with Gulp. Every time I add a new custom CSS line to my HTML file and run Gulp, it automatically removes that line from the file.
<!--MATERILIZE CORE CSS-->
<link href="../../common/vendors/Materialize/dist/css/materialize.css" rel="stylesheet"/>
<!--MAIN STYLE-->
<link href="views/modules/main/min/custom-min.css" rel="stylesheet"/>
<!--END MAIN STYLE-->
UPDATE 1: This is a snippet of my gulpfile:
(function () {
'use strict';
// Your gulp tasks and functions go here...
})();