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?
Asked
Active
Viewed 23 times
1 Answers
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
-
Great. How about meta tags like this https://stackoverflow.com/q/10533764/959939? – SenG Mar 07 '21 at 05:19