Joaquín Sánchez 5e8ea588db
feat: use ESM svg-packer with Vite (#364)
Co-authored-by: Anthony Fu <github@antfu.me>
2025-05-28 13:20:12 +08:00

16 lines
565 B
HTML
Executable File

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Icônes</title>
<link rel="icon" href="/favicon.svg" />
<link rel="icon" href="/favicon-dark.svg" media="(prefers-color-scheme: light)" />
<link rel="search" type="application/opensearchdescription+xml" href="/search.xml" title="Icônes" />
</head>
<body class="dragging bg-base color-base">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>