Files
flotilla/build.sh
T
2024-10-22 17:07:49 -07:00

18 lines
293 B
Bash
Executable File

#!/usr/bin/env bash
if [ -f .env ]; then
source .env
fi
if [ -f .env.local ]; then
source .env.local
fi
if [[ $VITE_PLATFORM_LOGO =~ ^https://* ]]; then
curl $VITE_PLATFORM_LOGO > static/logo.png
export VITE_PLATFORM_LOGO=static/logo.png
fi
npx pwa-assets-generator
npx vite build