主要更新: - 更新所有12个产业的教务系统数据和功能 - 删除所有 node_modules 文件夹(节省3.7GB) - 删除所有 .yoyo 缓存文件夹(节省1.2GB) - 删除所有 dist 构建文件(节省55MB) 项目优化: - 项目大小从 8.1GB 减少到 3.2GB(节省60%空间) - 保留完整的源代码和配置文件 - .gitignore 已配置,防止再次提交大文件 启动脚本: - start-industry.sh/bat/ps1 脚本会自动检测并安装依赖 - 首次启动时自动运行 npm install - 支持单个或批量启动产业系统 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
869 B
HTML
28 lines
869 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>多多畅职教育系统</title>
|
|
<!-- GitHub Pages SPA路由支持脚本 -->
|
|
<script type="text/javascript">
|
|
// 处理从404.html重定向过来的路径
|
|
(function(l) {
|
|
if (l.search[1] === '/' ) {
|
|
var decoded = l.search.slice(1).split('&').map(function(s) {
|
|
return s.replace(/~and~/g, '&')
|
|
}).join('?');
|
|
window.history.replaceState(null, null,
|
|
l.pathname.slice(0, -1) + decoded + l.hash
|
|
);
|
|
}
|
|
}(window.location))
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|