cv/app/frontend/index.html
2023-06-02 12:35:51 +02:00

25 lines
829 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lukáš Čech</title>
</head>
<body>
<script>
window.global = window;
try {
window.APP_CONFIG = JSON.parse('{{ .Config }}');
} catch (e) {
console.debug('App uses development configuration');
}
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>