]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/standalone/player/webpack.config.js
Handle playlist methods in embed api
[github/Chocobozzz/PeerTube.git] / client / src / standalone / player / webpack.config.js
CommitLineData
03d641a0
C
1const path = require('path')
2
3module.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]