UNPKG

modify-image-upload

Version:

上传图片组件(在上传图片时可以对图片进行修改,增加文字、水印、压缩图片质量等)

25 lines (24 loc) 518 B
const path = require('path') module.exports = function (type = "umd", name='es5') { return { mode: 'production', entry: path.resolve(__dirname, './index.js'), output: { filename: `index.${name}.js`, path: path.resolve(__dirname, './lib'), libraryTarget:type, library: "createUpload" }, module: { rules: [ { test: /\.js$/, loader: 'babel-loader', options: { presets: ['env'] } } ] } } }