package transform import ( "bytes" "github.com/spf13/viper" ) func LiveReloadInject(content []byte) []byte { match := []byte("") port := viper.GetString("port") replace := []byte(``) newcontent := bytes.Replace(content, match, replace, -1) if len(newcontent) == len(content) { match := []byte("") newcontent = bytes.Replace(content, match, replace, -1) } return newcontent }