Files
Cosmos-Server/client/index.html
Kawanaao 87c1636ff7 [skip ci] Optimizations/react (#186)
* Replaced the lodash module with submodules

* Using lazy imports of heavy modules

* Replaced the old authorization verification system with PrivateRoute

* Dynamic import of all paths

* Minifying the syntax highlighting library

* Added missing imports

* Added expires to head meta

* Don't force the code to follow unnecessary redirects

* Kawanaao accept CLA

---------

Co-authored-by: Yann S <7872597+azukaar@users.noreply.github.com>
2024-02-04 12:43:27 +00:00

22 lines
562 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="expires" content="0">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cosmos</title>
<link rel="icon" type="image/x-icon" href="/src/assets/images/icons/cosmos.png">
<style>
@media (prefers-color-scheme: dark) {
html {
background-color: #141414;
}
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>