Skip to content

Commit

Permalink
add: SPA behaviour & assets
Browse files Browse the repository at this point in the history
  • Loading branch information
Valexr committed Apr 14, 2024
1 parent 9922772 commit abd6f99
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
File renamed without changes
Binary file added public/assets/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 17 additions & 6 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@
<html lang="en">

<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1,maximum-scale=1'>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=auto">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />

<link rel='icon' href='favicon.ico'>
<link rel='icon' type='image/png' href='favicon.png'>
<link rel='stylesheet' href='build/app.css'>
<title>County</title>

<script defer type="module" src='build/app.js'></script>
<link rel="icon" href="favicon.ico">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="apple-touch-icon" type="image/png" sizes="any" href="assets/apple-touch-icon.png" />
<link rel="apple-touch-icon-precomposed" type="image/png" sizes="any"
href="assets/apple-touch-icon-precomposed.png" />
<link rel="stylesheet" href="build/app.css">

<script defer type="module" src="build/app.js"></script>
</head>

<body />
Expand Down

0 comments on commit abd6f99

Please sign in to comment.