@luzhuokun/uploadfile-webpack-plugin
v1.0.6
Published
配合webpack打包后发送文件至服务器
Downloads
3
Readme
Usage
// webpack.config.js
const UploadfileWebpackPlugin = require('uploadfile-webpack-plugin')
plugins: [
new UploadfileWebpackPlugin({
host: 'host',
port: 'port',
username: 'username',
password: 'password',
localpath: 'localpath',
remotepath: 'remotepath',
finishUpload: async()=>{}
})
]