【发布时间】:2017-04-25 16:04:24
【问题描述】:
例如html包含以下内容
<div class="logo-wrap">
<!-- /dev is developing directory -->
<img src="/dev/logo.png">
</div>
解决后。变成了
<div class="logo-wrap">
<!-- /static is deploying directory and a3z51b2l is file's hash -->
<!-- meanwhile, it moves logo.png from /dev directory to /static directory -->
<img src="/static/logo.a3z51b2l.png">
</div>
有没有插件可以做到这一点?
【问题讨论】: