blob: 8e2004c660d12976185fef8486111e493910aa03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
set -eu
cd client
rm -rf ./dist ./compiled
npm run ng build -- --prod --stats-json
NODE_ENV=production npm run webpack -- --config webpack/webpack.video-embed.js
|