diff options
author | Chocobozzz <me@florianbigard.com> | 2023-07-10 16:08:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-07-10 16:08:53 +0200 |
commit | 8953f055c86ca74f145d7ac5ac93bb6104d73af9 (patch) | |
tree | 4fd67ba6c2ba32f45bcc92e931cffe2fa57c12a4 /client/src/standalone/embed-player-api/webpack.config.js | |
parent | a1bd2b77d99cec5c27d38501f5f12f9dc339de17 (diff) | |
download | PeerTube-8953f055c86ca74f145d7ac5ac93bb6104d73af9.tar.gz PeerTube-8953f055c86ca74f145d7ac5ac93bb6104d73af9.tar.zst PeerTube-8953f055c86ca74f145d7ac5ac93bb6104d73af9.zip |
Rename player embed api
Diffstat (limited to 'client/src/standalone/embed-player-api/webpack.config.js')
-rw-r--r-- | client/src/standalone/embed-player-api/webpack.config.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/standalone/embed-player-api/webpack.config.js b/client/src/standalone/embed-player-api/webpack.config.js new file mode 100644 index 000000000..48d350edf --- /dev/null +++ b/client/src/standalone/embed-player-api/webpack.config.js | |||
@@ -0,0 +1,12 @@ | |||
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 | ] | ||