mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 23:12:28 +03:00
e7db587a9e
* feat: add vietnamese * feat: add emoji picker in editor * fix failing checks * move emoji button before upload button * move script to body index.html * Update web/index.html Co-authored-by: boojack <stevenlgtm@gmail.com>
24 lines
693 B
HTML
24 lines
693 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/logo.webp" type="image/*" />
|
|
<meta name="theme-color" content="#f6f5f4" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<title>Memos</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<script>
|
|
var global = global || window;
|
|
window.addEventListener("load", () => {
|
|
if ("serviceWorker" in navigator) {
|
|
navigator.serviceWorker.register("/sw.js");
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|