Fine Uploader with Webpack & ES6
问题 I am attempting to integrate fine-uploader with a React/ES6 application that is bundled via Webpack. Looking for guidance on how to include fine-uploader with this stack. In my webpack.config.js I have set an alias for Fine Uploader like so: resolve: { alias: { 'fine-uploader': path.resolve('node_modules/fine-uploader/s3.fine-uploader') } } And in my React component I have the following: import React from 'react' import 'fine-uploader' export default () => { return <h1>Fine Uploader</h1> }