Hello I am using Express with Handlebars as view engine and would like to know how to embed images in my templates and make them "visible" to Webpacks' url-loader
.
Maybe one possible solution would be to use handlebars-loader
but I would prefer not to use it.
What I would like to achieve is to use the Handlebars' equivalent of Jades'
img(src=require("./my/image.png"))
but without the use of handlebars-loader
. Thanks