1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-24 21:35:06 +03:00
guide/front/server/template.html

23 lines
383 B
HTML

<!--
{{title}}
Build time: {{renderTime}}
Environment: {{process.env.NODE_ENV}}
SSR Enabled: {{isSSR}}
-->
<!DOCTYPE html>
<html lang="zh-cmn-hans">
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
<script>
window.__SSR_IS_ON__ = true
</script>
</head>
<body>
<div id="app">
<!--vue-ssr-outlet-->
</div>
</body>
</html>