mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-22 16:46:34 +03:00
fix(cli): don't wait for content loaded in bundled HTML
This commit is contained in:
parent
d1d80422a4
commit
d9ee2d0d89
|
@ -217,18 +217,18 @@ async function getPageHTML(
|
||||||
const template = compile(readFileSync(templateFileName).toString());
|
const template = compile(readFileSync(templateFileName).toString());
|
||||||
return template({
|
return template({
|
||||||
redocHTML: `
|
redocHTML: `
|
||||||
|
<div id="redoc">${(ssr && html) || ''}</div>
|
||||||
<script>
|
<script>
|
||||||
${(ssr && `const __redoc_state = ${JSON.stringify(state)};`) || ''}
|
${(ssr && `const __redoc_state = ${JSON.stringify(state)};`) || ''}
|
||||||
document.addEventListener('DOMContentLoaded', function() {
|
|
||||||
var container = document.getElementById('redoc');
|
var container = document.getElementById('redoc');
|
||||||
Redoc.${
|
Redoc.${
|
||||||
ssr
|
ssr
|
||||||
? 'hydrate(__redoc_state, container);'
|
? 'hydrate(__redoc_state, container);'
|
||||||
: `init("spec.json", ${JSON.stringify(redocOptions)}, container)`
|
: `init("spec.json", ${JSON.stringify(redocOptions)}, container)`
|
||||||
};
|
};
|
||||||
});
|
|
||||||
</script>
|
</script>`,
|
||||||
<div id="redoc">${(ssr && html) || ''}</div>`,
|
|
||||||
redocHead: ssr
|
redocHead: ssr
|
||||||
? (cdn
|
? (cdn
|
||||||
? '<script src="https://unpkg.com/redoc@next/bundles/redoc.standalone.js"></script>'
|
? '<script src="https://unpkg.com/redoc@next/bundles/redoc.standalone.js"></script>'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user