27 lines
1014 B
HTML
27 lines
1014 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<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>
|
|
<script src="/setting.js"></script>
|
|
<!-- 使用 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>
|
|
<div id="app"></div>
|
|
<script src="/app.js"></script>
|
|
</body>
|
|
|
|
</html> |