Skip to content

Commit

Permalink
change the base path so the native app can correctly load everything
Browse files Browse the repository at this point in the history
  • Loading branch information
jbcpollak committed Jun 5, 2024
1 parent 5419d6f commit ec4dd36
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions applications/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="public/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="public/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="public/favicons/favicon-16x16.png">
<link rel="manifest" href="public/favicons/site.webmanifest">
<link rel="mask-icon" href="public/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="public/favicons/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="./favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicons/favicon-16x16.png">
<link rel="manifest" href="./favicons/site.webmanifest">
<link rel="mask-icon" href="./favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./favicons/favicon.ico">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="msapplication-config" content="public/favicons/browserconfig.xml">
<meta name="msapplication-config" content="./favicons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CADmium</title>
Expand Down
2 changes: 1 addition & 1 deletion applications/web/public/favicons/browserconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="public/favicons/mstile-150x150.png"/>
<square150x150logo src="./favicons/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
</tile>
</msapplication>
Expand Down
2 changes: 1 addition & 1 deletion applications/web/src/base.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const base = "/CADmium"
export const base = "./"

0 comments on commit ec4dd36

Please sign in to comment.