mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-08-08 17:59:13 +00:00
23 lines
620 B
HTML
23 lines
620 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Lapikud</title>
|
|
<script>
|
|
(function () {
|
|
var redirect = sessionStorage.redirect;
|
|
delete sessionStorage.redirect;
|
|
if (redirect && redirect !== location.href) {
|
|
history.replaceState(null, null, redirect);
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html>
|