Skip to content

Commit

Permalink
Use base path to not change asset paths.
Browse files Browse the repository at this point in the history
Specifying the root as base path should allow releasing URL changes for
UB windows without breaking any existing widgets.
  • Loading branch information
felixhageloh committed Jan 11, 2021
1 parent 447c0f1 commit 7aa10dd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server/release/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
<html>
<head>
<title>Übersicht</title>
<base href="/" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="/main.css" />
<link rel="stylesheet" type="text/css" href="/userMain.css" />
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" type="text/css" href="userMain.css" />

<script type="text/javascript" src="/client.js"></script>
<script type="text/javascript" src="client.js"></script>
</head>
<body>
<div id="uebersicht"></div>
Expand Down

0 comments on commit 7aa10dd

Please sign in to comment.