2020-04-23 11:46:23 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2020-05-07 14:54:04 +08:00
|
|
|
|
|
|
|
<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" />
|
|
|
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
|
|
|
|
<!-- 使用 CDN 加速的 CSS 文件,配置在 vue.config.js 下 -->
|
|
|
|
<% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.css) { %>
|
|
|
|
<link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="preload" as="style">
|
|
|
|
<link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet">
|
|
|
|
<% } %>
|
|
|
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
2020-06-30 19:02:11 +08:00
|
|
|
<script src="/setting.js"></script>
|
2020-05-07 14:54:04 +08:00
|
|
|
<!-- 使用 CDN 加速的 JS 文件,配置在 vue.config.js 下 -->
|
|
|
|
<% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
|
|
|
|
<script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
|
|
|
|
<% } %>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-05-19 18:10:44 +08:00
|
|
|
<div id="app"></div>
|
|
|
|
<script src="/app.js"></script>
|
2020-05-07 14:54:04 +08:00
|
|
|
</body>
|
2020-05-06 20:45:18 +08:00
|
|
|
|
2020-05-07 14:54:04 +08:00
|
|
|
</html>
|