0

Our DevOps Engineer is preparing a deployment script to deploy the new Angular code to production. We need to ensure whether the new code changes are indeed reflected in production. He needs to make small changes in the application source code and ensure it gets reflected in the target environment through the deployment script. He'd likely change hello1, hello2, hello3 to test his script. Is there a Html tag/meta-tag where we can set arbitary value that doesn't affect the app's behavior?

SenG
  • 713
  • 1
  • 7
  • 15

1 Answers1

0

I'd go with a plain old <span style="display:none;">hello1</span> here.

A <span> carries no semantic and display: none; hides it from view. Otherwise, You could use an <!-- HTML comment -->.

Ryuno-Ki
  • 692
  • 1
  • 6
  • 8