1
Fork 0
ytlean/frontend/index.html
2025-04-10 00:43:21 +05:00

21 lines
477 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
@import "tailwindcss";
</style>
</head>
<body>
<div id="app"></div>
<script type="module">
import { mount } from "svelte";
import App from "./src/App.svelte";
mount(App, { target: document.getElementById("app") });
</script>
</body>
</html>