swap to relative paths for github pages
authorxangelo <git@xangelo.ca>
Tue, 24 Jan 2023 04:45:25 +0000 (23:45 -0500)
committerxangelo <git@xangelo.ca>
Tue, 24 Jan 2023 04:45:25 +0000 (23:45 -0500)
Github pages places this project at https://xangelo.ca/outliner which is
fine, but it requires a small change to the asset inclusion to swap to
relative paths.

public/index.html

index 5b9d65a1c258df07cadf336d984bf8a38429c0f5..3ade5df4b0272050512e5281d1acf413e1e99b0a 100644 (file)
@@ -3,8 +3,8 @@
   <head>
     <meta charset="utf-8">
     <title>Outliner</title>
-    <link rel="stylesheet" href="/assets/reset.css">
-    <link rel="stylesheet" href="/assets/style.css">
+    <link rel="stylesheet" href="./assets/reset.css">
+    <link rel="stylesheet" href="./assets/style.css">
   </head>
   <body>
     <div id="outliner"></div>
@@ -12,5 +12,5 @@
       An Outliner project by <a href="https://xangelo.ca">xangelo</a>
     </footer>
   </body>
-  <script src="/assets/bundle.js"></script>
+  <script src="./assets/bundle.js"></script>
 </html>