29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
|
||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||
<%= htmlWebpackPlugin.options.AWSJSAndCSSImport %>
|
||
<!--
|
||
其它的js或css引用方式示例(<%= htmlWebpackPlugin.options.awsjsandcsspath%>)
|
||
<link rel="stylesheet" type="text/css" href="<%= htmlWebpackPlugin.options.AWSJSAndCSSPath%>apps/_bpm.platform/css/model/console.m.dw.design.css"/>
|
||
-->
|
||
<script>
|
||
const settingParam = <%= htmlWebpackPlugin.options.settingParam %>;
|
||
const axiosBaseUrl = "<%= htmlWebpackPlugin.options.axiosBaseUrl %>";
|
||
const production = <%= htmlWebpackPlugin.options.isproduction %>;
|
||
</script>
|
||
<% if(!htmlWebpackPlugin.options.isproduction) {%>
|
||
<script>
|
||
const devUserInfo = <%= JSON.stringify(htmlWebpackPlugin.options.devUserInfo) %>;
|
||
</script>
|
||
<% }%>
|
||
</head>
|
||
<body style="margin:0;">
|
||
<div id="app"></div>
|
||
</body>
|
||
</html>
|