sgxt_web/public/index.html

54 lines
1.4 KiB
HTML
Raw Normal View History

2025-04-12 14:54:02 +08:00
<!--
* @Author: your name
* @Date: 2024-09-23 10:12:35
* @LastEditTime: 2024-11-18 17:26:47
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \yb_web_new_gd\public\index.html
-->
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<!-- 视频 -->
<script src="./static/js/vconsole.min.js"></script>
<script src="./static/js/jquery-1.12.4.min.js"></script>
<script src="./static/js/moment.js"></script>
<script src="./static/js/vue.js"></script>
<script src="./static/js/antd.min.js"></script>
<script src="./static/js/antd-with-locales.min.js"></script>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work
properly without JavaScript enabled. Please enable it to
continue.</strong>
</noscript>
<div id="app"></div>
<script>
document.documentElement.addEventListener(
"touchmove",
function (event) {
if (event.touches.length > 1) {
event.preventDefault();
}
},
false
);
</script>
</body>
</html>