Skip to content

Commit 671a1cb

Browse files
committed
fix: using https for script tags
1 parent d4deaea commit 671a1cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/frontend/pages/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ export default function Vlog() {
9393
<>
9494
<Head>
9595
<title>{`${pageTitle || "Vlog"} | ${text.appName}`}</title>
96-
<script src="http://unpkg.com/@tensorflow/tfjs@3.4.0"></script>
97-
<script src="http://unpkg.com/@tensorflow-models/body-pix@2.1"></script>
96+
<script src="https://unpkg.com/@tensorflow/tfjs@3.4.0"></script>
97+
<script src="https://unpkg.com/@tensorflow-models/body-pix@2.1"></script>
9898
</Head>
9999
<section className="container flex flex-wrap items-center content-center justify-center w-full h-full px-4 mx-auto">
100100
{showError && (

0 commit comments

Comments
 (0)