I've encountered an issue while using gulp.js and BrowserSync. Whenever I save the CSS files, no changes are being reflected. Interestingly, there are no problems with the HTML files. It's worth mentioning that I'm not utilizing LESS or SASS, just pure CSS. Here's the snippet of code from my gulp.js file:
var gulp = require('gulp');
var browserSync = require('browser-sync').create();
gulp.task('serve', function() {
browserSync.init({
server: "./"
});
gulp.watch(["./*.html", "./css/*.css"]).on('change', browserSync.reload);
});
gulp.task('default', ['serve']);