mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-20 11:48:31 -06:00
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd client
|
|
|
|
mkdir -p ./dist/standalone/videos/
|
|
|
|
NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js --mode production --json > "./dist/standalone/videos/embed-stats.json"
|