I am trying to implement security header using the <meta> tag in the index.html file. I am using angular framework Here is the content:
<code><meta http-equiv="Content-Security-Policy" content="
default-src 'none';
frame-src 'self' https://stackpath.bootstrapcdn.com https://code.jquery.com https://cdnjs.cloudflare.com;
script-src 'self';
style-src 'self' https://stackpath.bootstrapcdn.com https://use.fontawesome.com;
font-src 'self' https://fonts.googleapis.com;
img-src 'self' data: blob:;
connect-src 'self'">
</code>
<code><meta http-equiv="Content-Security-Policy" content="
default-src 'none';
frame-src 'self' https://stackpath.bootstrapcdn.com https://code.jquery.com https://cdnjs.cloudflare.com;
script-src 'self';
style-src 'self' https://stackpath.bootstrapcdn.com https://use.fontawesome.com;
font-src 'self' https://fonts.googleapis.com;
img-src 'self' data: blob:;
connect-src 'self'">
</code>
<meta http-equiv="Content-Security-Policy" content="
default-src 'none';
frame-src 'self' https://stackpath.bootstrapcdn.com https://code.jquery.com https://cdnjs.cloudflare.com;
script-src 'self';
style-src 'self' https://stackpath.bootstrapcdn.com https://use.fontawesome.com;
font-src 'self' https://fonts.googleapis.com;
img-src 'self' data: blob:;
connect-src 'self'">
However, I cannot find any Content-Security-Policy headers in the response header section after deployment. What could be the issue?