yy-frontend/start/index.html
2023-05-24 21:35:21 +08:00

26 lines
854 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>瑶浴</title>
<!-- 告诉浏览器使用什么内核 -->
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="layui/css/layui.css" media="all">
<script>
/^http(s*):\/\//.test(location.href) || alert('请先部署到 localhost 下再访问');
</script>
</head>
<body>
<div id="LAY_app"></div>
<script src="layui/layui.js"></script>
<script>
layui.config({
base: '../src/', //指定 layuiAdmin 项目路径,本地开发用 src线上用 dist
version: new Date().getTime()
}).use('index');
</script>
</body>
</html>