mirror of
https://github.com/azukaar/Cosmos-Server.git
synced 2026-01-07 04:39:32 -06:00
* 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>
22 lines
562 B
HTML
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>
|