use base64-dataurl-loader handle image return DataURL
npm install base64-dataurl-loader
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(png|jpe?g|gif)$/i,
use: {
loader: 'base64-dataurl-loader'
}
}
]
},
};
yarn build
yarn test