Peertube-dl/themes/new_look_aprils_fools/public/webpack.config.js

11 lines
220 B
JavaScript
Raw Normal View History

2021-03-31 18:38:32 +02:00
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'),
},
};