diff --git a/src/build.tsx b/src/build.tsx
index 2f9b0b9..f0bad95 100644
--- a/src/build.tsx
+++ b/src/build.tsx
@@ -125,6 +125,10 @@ let html = renderToString(
`${environment == "prod" ? process.env.WEB_URL : "."}/data/videos.json`,
],
dns: [process.env.ENDPOINT as string, "https://wsrv.nl"],
+ script: [
+ environment == "dev" ? "/static/dev/hotreload.js" : "",
+ environment == "dev" ? "/static/populate_index.js" : "/static/populate_index.min.js"
+ ]
}}
/>
);
diff --git a/src/templates/Components/Head.tsx b/src/templates/Components/Head.tsx
index 70f8bfd..027bd63 100644
--- a/src/templates/Components/Head.tsx
+++ b/src/templates/Components/Head.tsx
@@ -7,6 +7,7 @@ export default function head(props: {
environment: "prod" | "dev";
preload?: string[];
dns?: string[];
+ script?: string[];
}) {
const mimetype = `image/${
props.image.split(".")[props.image.split(".").length - 1]
@@ -26,14 +27,43 @@ export default function head(props: {
-
- {props.preload ? props.preload.map((item) => ) : ""}
- {props.dns ? props.dns.map((item) => ) : ""}
- {props.environment == "dev" ? (
-
- ) : (
- ""
- )}
+
+ {props.preload
+ ? props.preload.map((item) =>
+ item ? (
+
+ ) : (
+ ""
+ )
+ )
+ : ""}
+ {props.dns
+ ? props.dns.map((item) =>
+ item ? (
+
+ ) : (
+ ""
+ )
+ )
+ : ""}
+ {props.script
+ ? props.script.map((item) =>
+ item ? : ""
+ )
+ : ""}
);
}
diff --git a/src/templates/index.tsx b/src/templates/index.tsx
index 10b06a9..3e4ce90 100644
--- a/src/templates/index.tsx
+++ b/src/templates/index.tsx
@@ -11,6 +11,7 @@ export default function Index(props: {
url: string;
preload?: string[];
dns?: string[];
+ script?: string[];
};
}) {
return (
@@ -56,7 +57,6 @@ export default function Index(props: {
-