Edit Meta Viewport Tag

Where could I edit this line:

<meta name="viewport" content="user-scalable=yes, width=375" />

It seems it is defined by the document settings and is not editable. But I want to have this:

<meta id="myViewport" name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">

I could change it manually in the index file, but that’s an extra way every time.

Hype does not support every of these settings ...

one approach may be this within the head:

<script>
let metaViewport = document.querySelector('meta[name*="viewport"]');
metaViewport.content = "width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover";//this is your custom content. prvious content will be overwritten
metaViewport.id = "myViewport"; //your id
</script>	

another would be an exportscript.

I was doing some testing a month ago and from my testing it appears if you put your desired <meta> tag below Hype’s generated one in the editable portion of the Head HTML, your content will supersede Hype’s. I recommend testing of course!