https://github.com/bootstarted/s3-webpack-plugin
Simple webpack to S3 uploader.
https://github.com/bootstarted/s3-webpack-plugin
bootstart metalab s3 webpack-plugin
Last synced: 6 months ago
JSON representation
Simple webpack to S3 uploader.
- Host: GitHub
- URL: https://github.com/bootstarted/s3-webpack-plugin
- Owner: bootstarted
- Created: 2016-08-31T08:54:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-31T22:24:58.000Z (over 9 years ago)
- Last Synced: 2025-06-13T15:46:47.663Z (8 months ago)
- Topics: bootstart, metalab, s3, webpack-plugin
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# s3-webpack-plugin
Simple S3 upload plugin for webpack.





For something with more bells and whistles, feel free to look [here](https://github.com/MikaAK/s3-plugin-webpack).
Install:
```sh
npm install --save s3-webpack-plugin
```
And configure:
```javascript
module.exports = {
// ...
plugins: [
new S3UploadPlugin('s3://my-bucket'),
],
};
```