Missing viewport meta tag in development and production

I have a file ( head.html ) in m y client directory with the following:

 <head>
	<title>My SoonToBeAwesome App The Client Wont Appreciate</title>
	<meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="icon" href="https://s3.amazonaws.com/meteor-cms-default/orionjs/favicon.ico" type="image/vnd.microsoft.icon">
</head>

Everything shows up but the viewport meta tag. I don’t see one being added by Meteor…is this expected? I’m having a stupid issue with iOS and background images and I think the viewport may be the culprit…at least I’m hoping so.

Is head.html will be load into the template or outside? Try place the Head or meta tag outside template and see if it appear.

Just tried that. Still no go…the title tag is showing up and the favicon link. And if I comment out the viewport tag it shows up.

I’m wondering if a package is stripping it? I built this off of the sample Orion blog which had it in there already.