15 lines
480 B
HTML
15 lines
480 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en" class="light">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title><%- HTML_TITLE %></title>
|
||
|
<link type="image/png" href="/favicon-light.png" rel="shortcut icon" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<noscript>This app works best with JavaScript enabled.</noscript>
|
||
|
<div id="root" class="wh-full"></div>
|
||
|
<script type="module" src="/src/main.tsx"></script>
|
||
|
</body>
|
||
|
</html>
|