Skip to content

Commit

Permalink
?
Browse files Browse the repository at this point in the history
  • Loading branch information
connorrothschild committed Jan 2, 2024
1 parent 4bf921b commit 861467b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="v4/favicon.png" />
<link rel="icon" href="/v4/favicon.png" />

<link rel="preload" href="https://use.typekit.net/mhr2lku.css" as="style" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Sections/Projects.svelte
Expand Up @@ -19,7 +19,7 @@
let videos = [];
function preload(i) {
let videoUrl = $isHEVC ? `./videos/${i}.mov` : `./videos/${i}.webm`;
let videoUrl = $isHEVC ? `./v4/videos/${i}.mov` : `./v4/videos/${i}.webm`;
let req = fetch(videoUrl).then((response) => response.blob());
req.then((blob) => {
Expand Down

0 comments on commit 861467b

Please sign in to comment.