I'm trying to render images like this but they're showing up as broken images on the pages.
...
return (
<img src='/public/images/ic-account-circle-black-24-px-5.png' alt='uimg' />
)
Here is my webpack config for handling image files:
config.module.rules.push({
test : /\.(png|jpg|gif)$/,
loader : 'url-loader',
options : {
limit : 8192,
},
})