Fix is managaeble for channels
[oweals/peertube.git] / client / src / standalone / player / webpack.config.js
1 const path = require('path')
2
3 module.exports = [
4   {
5     mode: 'production',
6     entry: './dist/player.js',
7     output: {
8       filename: 'player.min.js',
9       path: path.resolve(__dirname, 'build')
10     }
11   }
12 ]