fis3-hook-relative
fis3-hook-relative copied to clipboard
让 fis3 产出能够支持相对路径。
Results
11
fis3-hook-relative issues
Sort by
recently updated
recently updated
newest added
fis-conf设置 ``` fis.hook('relative'); fis.set('new date', Date.now()); fis.match('**', { query: '?t=' + fis.get('new date') }); fis.match('**', { relative: true }) ``` 输出结果: `href="style.css?t=1446616745334?t=1446616745334"` 如果原链接带有query,如`style.css?a=1`,输出结果`/style.css&a=1`
bug