#!/bin/sh echo "Injecting runtime environment variables into index.html..." CONFIG_BLOCK=$(cat << EOF EOF ) # Use sed to replace the config block in index.html # Using pattern space to match across multiple lines sed -i.bak ' //,//{ //!{ //!d } //r /dev/stdin //d } ' build/index.html <<< "$CONFIG_BLOCK" rm -f build/index.html.bak