how to change referrer-policy in react js

Viewed 4991

I want to change referral policy in chrome the default policy for new update in chrome is strict-origin-when-cross-origin I need to change it to no-referrer-when-downgrade

I am using reactjs how can I change the policy

THank you

1 Answers

Add this line in index.html head to go back to old referral policy

<meta name="referrer" content="no-referrer-when-downgrade" />
Related