Bug fixing added moving torrents after download, getting ready for alpha release
This commit is contained in:
30
goTorrentWebUI/node_modules/react-dropzone/webpack.config.js
generated
vendored
Normal file
30
goTorrentWebUI/node_modules/react-dropzone/webpack.config.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
const path = require('path')
|
||||
|
||||
module.exports = {
|
||||
entry: './src/index.js',
|
||||
devtool: 'source-map',
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
filename: 'index.js',
|
||||
libraryTarget: 'umd',
|
||||
library: 'Dropzone'
|
||||
},
|
||||
module: {
|
||||
loaders: [
|
||||
{
|
||||
include: [path.resolve(__dirname, 'src'), path.resolve(__dirname, 'examples')],
|
||||
test: /\.js$/,
|
||||
loader: 'babel-loader'
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
// Can require('file') instead of require('file.js') etc.
|
||||
extensions: ['.js', '.json']
|
||||
},
|
||||
externals: {
|
||||
react: 'react',
|
||||
'prop-types': 'prop-types'
|
||||
},
|
||||
plugins: []
|
||||
}
|
Reference in New Issue
Block a user