2022-03-07 09:21:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Page</title>
|
|
|
|
<style>
|
|
|
|
@import "../../webapp/src/styles/main.scss";
|
|
|
|
</style>
|
2022-03-21 14:21:34 +00:00
|
|
|
<script type="module" src="server.ts"></script>
|
2022-03-07 09:21:02 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
|
|
|
<script type="module">
|
2022-03-21 14:21:34 +00:00
|
|
|
import "./server";
|
2022-03-07 09:21:02 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|