UNPKG

@m59/reload-client

Version:

Client-side script to respond to signals from @m59/reload-server. Can reload the page and refresh css and images.

12 lines (9 loc) 275 B
import bustCache from './bust-cache' function refreshCSS() { [...document.getElementsByTagName('link')].forEach(function(elem) { if (!elem.rel || elem.rel.toLowerCase() === 'stylesheet') { elem.href = bustCache(elem.href) } }) } export default refreshCSS