Skip to content

Commit

Permalink
Fixes to service worker
Browse files Browse the repository at this point in the history
  • Loading branch information
dinoosauro committed Jun 10, 2024
1 parent 41b60f8 commit f9d0b98
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="./icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="manifest" href="./manifest.json" />
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion public/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const filestoCache = [
'./',
'./index.html',
'./icon.png',
'./assets/icon.svg',
'./icon.svg',
'./assets/heic2any.js',
'./assets/index.css',
'./assets/index.js',
Expand Down
4 changes: 0 additions & 4 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import Assets from "./lib/Styles/Assets.svelte";
import TitleIcon from "./lib/Styles/TitleIcon.svelte";
import { updateAccentImage } from "./Scripts/ImageContentHandler";
import Icon from "./assets/icon.svg";
$: dialogShow = 0;
const fileSystemAPIId = `Checkbox-${Math.random().toString().substring(2)}`;
afterUpdate(() => {
Expand Down Expand Up @@ -113,9 +112,6 @@
on:dragenter={() => document.documentElement.classList.add("drop")}
on:dragleave={() => document.documentElement.classList.remove("drop")}
/>
<svelte:head>
<link rel="icon" href={Icon} />
</svelte:head>
<Header></Header><br />
{#if $conversionStatus === 0}
<div class="flex multiPage">
Expand Down

0 comments on commit f9d0b98

Please sign in to comment.