我正在使用webpack“url-loader”,这有助于我在JS中创建“img标签元素”并附加到某个节点上。目前,这个加载器会根据大小来决定是将其内联还是将其作为文件放在“build”中。
{
test: /\.(png|jpg)$/,
exclude: /node_modules/,
loader: "url-loader?limit=5000"
}
// Portion of my webpack config file.
我怎么看一个更简单的任务,用index.html中的“img”标签引用图片。例如:
<img src="logo.png" alt=""/>
由于“logo.png”图像未复制到构建文件夹,因此我无法使用简单的img标记在index.html中引用它。