diff options
author | stale <redkugelblitzin@gmail.com> | 2022-05-30 22:30:47 -0300 |
---|---|---|
committer | stale <redkugelblitzin@gmail.com> | 2022-05-30 22:30:47 -0300 |
commit | 746a810eea15e52f7d1b17778239825daad90e01 (patch) | |
tree | 113ffba4743615577bc36d19c3b4fcea2dcbdb3f /assets/room.html | |
parent | b1fd887402e4577cbb630fc6517cf9cd6e0d7c8f (diff) |
fix absolute paths so deployment is easier
Diffstat (limited to 'assets/room.html')
-rw-r--r-- | assets/room.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/room.html b/assets/room.html index d96bb77..4470aea 100644 --- a/assets/room.html +++ b/assets/room.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <title>websweeper</title> <meta name="viewport" content="width=device-width,initial-scale=1"> - <link rel="stylesheet" type="text/css" href="/s.css"> + <link rel="stylesheet" type="text/css" href="../s.css"> </head> <body> <div> @@ -15,5 +15,5 @@ </div> </body> <script src="https://unpkg.com/fflate"></script> - <script src="/c.js"></script> + <script src="../c.js"></script> </html> |