I added a new meta
tag to next/head
import Head from "next/head";
export default function Home() {
return (
<>
<Head>
<title>Hello world!</title>
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
</Head>
...
but this meta tag is missing from inside the <head>
tags when the app is launched with next dev
or next start
.