Files
TypeWords/index.html
zyronon de4414711b Merge branch 'master' into dev
# Conflicts:
#	.github/workflows/deploy-pages.yml
#	README.md
#	components.d.ts
#	index.html
#	package.json
#	pnpm-lock.yaml
#	src/App.vue
#	src/components/Backgorund.vue
#	src/components/Setting.vue
#	src/components/toolbar/FeedbackModal.vue
#	src/components/toolbar/index.vue
#	src/pages/dict/components/WordDictDetail.vue
#	src/pages/practice/practice-word/Typing.vue
#	src/pages/practice/practice-word/TypingWord.vue
#	src/stores/base.ts
#	src/stores/setting.ts
2025-08-10 01:35:02 +08:00

37 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/logo.jpg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Type Words</title>
<script>
;(function () {
var src = '//cdn.jsdelivr.net/npm/eruda';
if (!/eruda=true/.test(window.location) && localStorage.getItem('active-eruda') != 'true') return;
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
document.write('<scr' + 'ipt>eruda.init();</scr' + 'ipt>');
})();
</script>
<script>
if (!location.href.includes('localhost')
&& !location.href.includes('192.168')
&& !location.href.includes('172.16')
&& !location.href.includes('10.0')
) {
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?3dae52fcd5375a19905462e4ad3eb54e";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
}
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>