mirror of
https://github.com/Redocly/redoc.git
synced 2025-11-06 10:47:32 +03:00
Co-authored-by: Roman Hotsiy <gotsijroman@gmail.com> Co-authored-by: Alex Varchuk <olexandr.varchuk@gmail.com> Co-authored-by: Oprysk Vyacheslav <vyacheslav@redocly.com> Co-authored-by: Ivan Kropyvnytskyi <130547411+ivankropyvnytskyi@users.noreply.github.com> Co-authored-by: Yevhen Pylyp <yevhen.pylyp@redocly.com> Co-authored-by: Vladyslav Makarenko <vladyslav.makarenko@redocly.com> Co-authored-by: Yevhenii Medviediev <yevhenii.medviediev@redocly.com> Co-authored-by: Oleksii Horbachevskyi <oleksii.horbachevskyi@redocly.com> Co-authored-by: volodymyr-rutskyi <rutskyi.v@gmail.com> Co-authored-by: Adam Altman <adam@redoc.ly> Co-authored-by: Andrew Tatomyr <andrew.tatomyr@redocly.com> Co-authored-by: Anastasiia Derymarko <anastasiia@redocly.com> Co-authored-by: Roman Marshevskyy <roman.marshevskyy@redoc.ly> Co-authored-by: Lorna Mitchell <lorna.mitchell@redocly.com> Co-authored-by: Taylor Krusen <taylor.krusen@redocly.com>
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</head>
|
|
<body>
|
|
<div id="redoc_container"></div>
|
|
<script type="module">
|
|
import { init } from '../bundle/redoc.standalone.js';
|
|
|
|
const searchParams = new URLSearchParams(location.search);
|
|
const specFileName = searchParams.get('specFileName') || 'menu.yaml';
|
|
const schemaDefinitionsTagName = searchParams.get('schemaDefinitionsTagName');
|
|
const routingBasePath = searchParams.get('routingBasePath') || undefined;
|
|
|
|
init(
|
|
`../openapi/menu/${specFileName}`,
|
|
{
|
|
schemaDefinitionsTagName,
|
|
routingBasePath,
|
|
downloadUrls: [
|
|
{
|
|
url: 'http://redocly.com/definition.yaml',
|
|
name: 'definition.yaml',
|
|
},
|
|
{
|
|
url: 'http://redocly.com/definition.json',
|
|
name: 'definition.json',
|
|
},
|
|
],
|
|
},
|
|
document.getElementById('redoc_container'),
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|