rdt-client/client/src/index.html

22 lines
682 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Real-Debrid Torrent Client</title>
<base href="/" />
<script>
(function () {
if (window.location.host !== 'localhost:4200') {
var pathSegment = window.location.pathname.split("/")[1];
window["_app_base"] = pathSegment ? "/" + pathSegment + "/" : "/";
console.log("setting base href to " + window["_app_base"]);
}
})();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<app-root></app-root>
</body>
</html>