monofile/src/index.html
Jack W. 6220cd8b0f
refactor: ♻️ Use Vite instead of Rollup
Soon: Hono instead of Express
2023-10-24 17:18:36 -04:00

39 lines
970 B
HTML

<!--
for some reason (don't know why)
certain things break
when not in quirks mode
so i'm not adding in the
doctype html
-->
<html lang="en">
<head>
<link rel="stylesheet" href="./style/app.scss" />
<link
rel="icon"
type="image/svg"
href="/static/assets/icons/icon_temp.svg"
/>
<link rel="stylesheet" href="/auth/customCSS" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=0"
/>
<script type="module" src="./svelte/index.js"></script>
<title>monofile</title>
<meta name="title" content="monofile" />
<meta
name="description"
content="The open-source Discord-based file sharing service"
/>
<meta name="theme-color" content="rgb(30, 33, 36)" />
</head>
<body></body>
</html>