Every time Gulp changes the CSS or JS files it keep the output file name same as before. How will browser know that file has been changed and need to reload the css and JS files?
To resolve this problem, I am decide to use the following Gulp plugin:
https://github.com/sindresorhus/gulp-rev
it rename the assets file by appending content hash to filenames
unicorn.css => unicorn-098f6bcd.css
is there any way to include the assets file using php dynamically? Assets name will change every time when new content added.