mirror of
https://github.com/2234839/web-font.git
synced 2026-05-06 19:08:11 +08:00
- 前端从 SolidJS 迁移到 Vue3 Composition API(<script setup lang="ts">) - 后端构建从 tsup 迁移到 tsdown,动态 import 改为静态以支持单文件输出 - FontSelector 添加 defineProps 修复下拉无选项问题 - StatsPanel 添加"服务状态"标题 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
16 lines
669 B
HTML
16 lines
669 B
HTML
<!doctype html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<meta name="description" content="在线字体裁剪工具 — 服务端按需裁剪字体子集,大小无限制,免费开源。支持自定义裁剪、增量加载 SDK,轻松嵌入任何网站。" />
|
||
<title>WebFont — 在线字体裁剪 | 按需加载 | 免费开源</title>
|
||
</head>
|
||
<body>
|
||
<div id="root"></div>
|
||
<script src="/webfont-sdk.js"></script>
|
||
<script type="module" src="/src/main.ts"></script>
|
||
</body>
|
||
</html>
|