All checks were successful
continuous-integration/drone/push Build is passing
- 添加 public/index.html 模板文件,确保 CSS 正确引入 - 更新 manifest.json 添加 template 配置 - 完善 vue.config.js 配置 参考 martial-mini 项目的修复方案
15 lines
412 B
HTML
15 lines
412 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
|
|
<title>武术评分系统</title>
|
|
<link rel="stylesheet" href="./static/index.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
</html>
|