Skip to content

Commit

Permalink
OPHJOD-1037: Fix asset paths
Browse files Browse the repository at this point in the history
  • Loading branch information
sauanto committed Dec 17, 2024
1 parent 2309da2 commit 9b0df75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" crossorigin="use-credentials" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" crossorigin="use-credentials" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" crossorigin="use-credentials" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" crossorigin="use-credentials" />
<link rel="apple-touch-icon" sizes="180x180" href="/ohjaaja/apple-touch-icon.png" crossorigin="use-credentials" />
<link rel="icon" type="image/png" sizes="32x32" href="/ohjaaja/favicon-32x32.png" crossorigin="use-credentials" />
<link rel="icon" type="image/png" sizes="16x16" href="/ohjaaja/favicon-16x16.png" crossorigin="use-credentials" />
<link rel="mask-icon" href="/ohjaaja/safari-pinned-tab.svg" color="#5bbad5" crossorigin="use-credentials" />
<meta name="msapplication-TileColor" content="#2b5797" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Root/Root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const Root = () => {
<>
<Helmet>
<html lang={language} />
<link rel="manifest" href={`/manifest-${language}.json`} crossOrigin="use-credentials" />
<link rel="manifest" href={`/ohjaaja/manifest-${language}.json`} crossOrigin="use-credentials" />
<body className="bg-bg-gray" />
</Helmet>
<header role="banner" className="sticky top-0 z-30 print:hidden">
Expand Down

0 comments on commit 9b0df75

Please sign in to comment.