today I have some new warnings in chrome console:
Error with Permissions-Policy header: Unrecognized feature: 'interest-cohort'.
Error with Permissions-Policy header: Unrecognized feature: 'ch-ua-full-version-list'.
I don't want my site to be included inside this google's feature
searching the web I found the following solution (.htaccess file):
<IfModule mod_headers.c>
Header always set Permissions-Policy: interest-cohort=()
</IfModule>
but it doesn't help. The warnings are still in console
Is there an efficient way to stop appearing this messages ?