Is there a way to rewrite the HTML to use gulp-minified CSS
I'm struggling with the following: My gulpfile.js compiles all .less, minifies it and concattenates all CSS into ./dist/all.min.css Is there a way I can rewrite the HTML file, remove all style tags and only put one style tag into it loading the minified CSS? OverZealous The best way to handle this is to use one of the HTML injectors from the get-go. I'm using gulp-inject to some success so far. Add gulp-inject to your project: npm i --save-dev gulp-inject Assuming that you have a folder layout similar to this: build/ src/ index.html less/ main.less js/ app.js Your HTML should include this