Skip to content

Commit

Permalink
use relative url for loading assets. closes #77
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Nov 2, 2018
1 parent cb25b26 commit 9589072
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<html class="no-js" lang="en">
<head>
<title>Fathom - simple website analytics</title>
<link href="/assets/css/styles.css" rel="stylesheet">
<link href="assets/css/styles.css" rel="stylesheet">
<meta charset="utf-8">
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon.png">
</head>
<body class="fathom">
<div id="root"></div>
<noscript>To use Fathom, please enable JavaScript.</noscript>
<script>
document.documentElement.className = document.documentElement.className.replace('no-js', '');
</script>
<script src="/assets/js/script.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>

0 comments on commit 9589072

Please sign in to comment.