forked from sergiotarxz/Peertube-dl
11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './src/index.js',
|
||
|
devtool: 'source-map',
|
||
|
output: {
|
||
|
filename: 'peertube-dl-web.js',
|
||
|
path: path.resolve(__dirname, 'dist/js'),
|
||
|
},
|
||
|
};
|