我需要帮助告诉grunt更改html中的路径,因为它们在我们的生产环境与开发环境不同。
示例:
Development: /images/image.jpg
Production: /different/path/images/image.jpg
同样,这些不在scss文件中,它们在html中:
<img src="/images/image.jpg">
发布'grunt build'时需要更改为:
<img src="/different/path/images/image.jpg">