在开发模式下,我对 html 图像使用 require 并使用 webpack 进行编译。
html:
下面的代码是使用 webpack 编译的,并以普通 html 的形式返回输出,但是如何将它用于 html5 srcset 2x 3x 图像?
<img src=<%=require("./images/test.png") %><!-compiled properly-->
<img src=<%=require("./images/test.png") %> srcset="images/test-2x.png 2x, images/test-3x.png 3x" class="img-fluid" />