]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/standalone/player/webpack.config.js
Update angular
[github/Chocobozzz/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 ]