Simple S3 upload plugin for webpack.
For something with more bells and whistles, feel free to look here.
Install:
npm install --save s3-webpack-plugin
And configure:
module.exports = {
// ...
plugins: [
new S3UploadPlugin('s3://my-bucket'),
],
};