Files
wlan-cloud-ui/generate_config_js.sh
2020-08-03 12:03:56 -04:00

10 lines
177 B
Bash

#!/bin/sh -eu
if [ -z "${API:-}" ]; then
API_URL_JSON=undefined
else
API_URL_JSON=$(jq -n --arg api '$API' '$api')
fi
cat <<EOF
window.REACT_APP_API=$API_URL_JSON;
EOF