fix: CDN资源本地化——Tailwind/Chart.js自托管,移除GoogleFonts(避免翻墙依赖)

This commit is contained in:
hmo
2026-08-01 09:02:21 +08:00
parent 1248eb71be
commit 325838f2eb
3 changed files with 106 additions and 3 deletions
+20
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
@@ -4,10 +4,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MoFin · 莫荷情报</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4"></script>
<script src="/static/tailwind.js"></script>
<script src="/static/chart.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* System font stack — no Google Fonts dependency */
* { font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif; }
body { background: #0f0f13; color: #e2e8f0; }
.tab-btn { transition: all 0.15s; }
File diff suppressed because one or more lines are too long