- Change the build process to allow cache busting - Optimisations to the build process - Several improvements of UI geared towards mobile experience -
13 lines
175 B
Bash
Executable File
13 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Copying client images"
|
|
cp -fv ../eveai_chat_client/static/assets/img/* ../nginx/static/assets/img
|
|
|
|
cd ../nginx
|
|
|
|
npm run clean
|
|
npm run build
|
|
|
|
cd ../docker/
|
|
|