meta-tags

html meta viewport user-scalable=no seemed no longer working on iOS 13.3

孤街浪徒 提交于 2021-02-08 09:16:15
问题 I am trying to disable user pinch zoom on a web page dedicated for mobile devices, i tried the following meta tags with no avail: <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/> I also tired this: <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/> some of my older websites that used to succeed in disabling user pinch zooming before, no longer work anymore as of today. I am not

html meta viewport user-scalable=no seemed no longer working on iOS 13.3

守給你的承諾、 提交于 2021-02-08 09:16:07
问题 I am trying to disable user pinch zoom on a web page dedicated for mobile devices, i tried the following meta tags with no avail: <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/> I also tired this: <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/> some of my older websites that used to succeed in disabling user pinch zooming before, no longer work anymore as of today. I am not

Dynamic CSP (Content Security Policy) connect-src in Angular

让人想犯罪 __ 提交于 2021-02-08 04:51:15
问题 I defined the CSP within meta tags in my Angulars project index.html file <meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src 'self' https://baseurl1/ https://baseurl2/ https://baseurl3/; img-src 'self' data: http://baseurl/; frame-src 'self' blob:; media-src 'self' https://baseurl/; script-src 'self' 'unsafe-inline' 'unsafe-eval' http://baseurl/; style-src 'self' 'unsafe-inline';"> My issue is, that I want to whitelist exactly one more connect-src dynamically

how to add canonical link in angular 5

余生长醉 提交于 2021-02-06 20:45:46
问题 How to add canonical link in angular 5 dynamically <link rel="canonical" href="http://foobar.com/gotcah"/> 回答1: Facing the same issue I searched around and found a guide on how to do this: https://www.concretepage.com/angular/angular-title-service-and-canonical-url It is using Angular 6 though, but I think it is backwards compatible to 5. It basically suggests creating a Service (SEOService) for facilitating creating the canonical link whereever it is injected. It injects the Angular DOCUMENT

how to add canonical link in angular 5

☆樱花仙子☆ 提交于 2021-02-06 20:44:46
问题 How to add canonical link in angular 5 dynamically <link rel="canonical" href="http://foobar.com/gotcah"/> 回答1: Facing the same issue I searched around and found a guide on how to do this: https://www.concretepage.com/angular/angular-title-service-and-canonical-url It is using Angular 6 though, but I think it is backwards compatible to 5. It basically suggests creating a Service (SEOService) for facilitating creating the canonical link whereever it is injected. It injects the Angular DOCUMENT

React Helmet not updating meta tags

做~自己de王妃 提交于 2021-01-04 07:00:53
问题 I have my index.html page in react project as following: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Bucard | Digital Business Card</title> <meta name="title" content="Bucard | Digital Business Card"> <meta name="description" content="Bucard - Description for bucard" /> <meta property="og:title" content="Bucard | Digital Business Card" /> <meta property="og:image" content="http://m.digital-card.co.il/zedka/152/images/icon.png" /> <meta property="og:description"

React Helmet not updating meta tags

╄→гoц情女王★ 提交于 2021-01-04 06:59:27
问题 I have my index.html page in react project as following: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Bucard | Digital Business Card</title> <meta name="title" content="Bucard | Digital Business Card"> <meta name="description" content="Bucard - Description for bucard" /> <meta property="og:title" content="Bucard | Digital Business Card" /> <meta property="og:image" content="http://m.digital-card.co.il/zedka/152/images/icon.png" /> <meta property="og:description"

NextJs dynamic open graph meta tags not rendering for facebook debugger

雨燕双飞 提交于 2020-08-09 09:47:27
问题 I have tried to include meta tags using base "Head" feature of NextJs, react-helmet and next-seo packages.They all works fine on client side and show meta tags in inspect tool. But When I try to detect it using facebook debugger tool or any other open graph tags detector, it does not work. May be something to do with server side rendering of meta tags but I have not found enough material to implement server side meta tags in NextJs framework. 回答1: Are you using Redux Persist? Since there is a

NextJs dynamic open graph meta tags not rendering for facebook debugger

拈花ヽ惹草 提交于 2020-08-09 09:47:10
问题 I have tried to include meta tags using base "Head" feature of NextJs, react-helmet and next-seo packages.They all works fine on client side and show meta tags in inspect tool. But When I try to detect it using facebook debugger tool or any other open graph tags detector, it does not work. May be something to do with server side rendering of meta tags but I have not found enough material to implement server side meta tags in NextJs framework. 回答1: Are you using Redux Persist? Since there is a