I am using webpack to manage a reactjs project. I want to load images in javascript by webpack file-loader. Below is the
file-loader
webpack.config.js
{ test: /\.(png|jpe?g|gif)$/i, loader: 'file-loader', options: { name: '[name].[ext]', }, }
anyfile.html