extract-image-webpack-plugin
v1.0.8
Published
extract image from html to dist folder.
Readme
extract image webpack plugin
Uage
const extractImage = require('extract-image-webpack-plugin');
module.exports = {
plugins: [
new extractImage({
publicPath: './dist/images/',
template: './template/index.html',
distPath: '../dist/images',
}),
],
};