21 lines
700 B
HTML
21 lines
700 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>人人快速开发平台</title>
|
|
<% if (process.env.NODE_ENV === 'production') { %>
|
|
<!-- 生产环境 -->
|
|
<script src="./config/index.js?h=<%=compilation.hash%>"></script>
|
|
<% }else { %>
|
|
<!-- 开发环境 -->
|
|
<link rel="shortcut icon" type="image/x-icon" href="./static/img/favicon.ico">
|
|
<script src="./static/config/index.js"></script>
|
|
<script src="./static/plugins/mock-1.0.0-beta3/mock-min.js"></script>
|
|
<% } %>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html> |