mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 21:13:07 +03:00
21 lines
423 B
HTML
21 lines
423 B
HTML
|
<!--
|
||
|
<%= htmlWebpackPlugin.options.title %>
|
||
|
Build time: <%= process.env.BUILD_TIME %>
|
||
|
Environment: <%= process.env.NODE_ENV %>
|
||
|
SSR Enabled: false
|
||
|
-->
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="zh-cmn-hans">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
||
|
<script>
|
||
|
window.__SSR_IS_ON__ = false
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
</body>
|
||
|
</html>
|