@vulcan-sql/serve
Version:
VulcanSQL package for serving projects
29 lines (28 loc) • 676 B
HTML
<html>
<head>
<title>{{ title }}</title>
<!-- needed for adaptive design -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--
Redoc doesn't change outer page styles
-->
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<!--
Redoc element with link to your OpenAPI definition
-->
<redoc spec-url="{{ specUrl }}"></redoc>
<!--
Link to Redoc JavaScript on CDN for rendering standalone element
-->
<script src="{{ bundleFileUrl }}"></script>
</body>
</html>