UNPKG

hexo-theme-maxmilu

Version:

A fork hexo theme base hexo-theme-nexmoe.

18 lines (14 loc) 605 B
'use strict'; function cssAutoVersionHelper(...args) { return args.reduce((result, path, i) => { if (i) result += '\n'; if (Array.isArray(path)) { return result + Reflect.apply(cssAutoVersionHelper, this, path); } if (!path.includes('?') && !path.endsWith('.css')) path += '.css'; let url_suffix = "?v=" + new Date().getTime(); let url = this.url_for(path) + url_suffix; return `${result}<link rel="stylesheet" href="${url}">`; }, ''); } hexo.extend.helper.register('css_auto_version', cssAutoVersionHelper);