19 lines
764 B
HTML
19 lines
764 B
HTML
<!doctype html>
|
|
<html lang="ko" class="m-0 p-0 overflow-hidden w-full h-full">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
|
|
<link rel="icon" type="image/png" href="./favicon.png">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
|
|
<title>Aislo 2D Drawing</title>
|
|
</head>
|
|
<body class="m-0 p-0 overflow-hidden w-full h-full min-h-screen flex flex-row bg-white">
|
|
<div id="root" data-id="root" class="bg-slate-950"></div>
|
|
<canvas data-id="canvas" class="block bg-black cursor-none"></canvas>
|
|
<div class="export-pdf-wrapper">
|
|
<!-- Used to append the svg before exporting it to pdf -->
|
|
</div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|