22 lines
580 B
HTML
22 lines
580 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<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>
|