/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
packages/plugins/documentation/server/src/public/index.html
70 строк
2 KB
Andrei L
chore(deps): upgrade lint-staged to 16 and scope linting to staged files (#26765)
25 июн 2026, 15:09
Не верифицирован
25 июн 2026, 15:09
e0029a9
Код
Авторство
О чём код?
<!-- HTML for static distribution bundle build --><!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Swagger UI</title> <link rel="stylesheet" type="text/css" href="<%=backendUrl%>/plugins/documentation/swagger-ui.css" /> <link rel="icon" type="image/png" href="<%=backendUrl%>/plugins/documentation/favicon-32x32.png" sizes="32x32" /> <link rel="icon" type="image/png" href="<%=backendUrl%>/plugins/documentation/favicon-16x16.png" sizes="16x16" /> <style> html { box-sizing: border-box; overflow: -moz-scrollbars-vertical; overflow-y: scroll; } *, *:before, *:after { box-sizing: inherit; } body { margin: 0; background: #fafafa; } </style> </head> <body> <div id="swagger-ui"></div> <script class="custom-swagger-ui"> window.onload = function() { const ui = SwaggerUIBundle({ url: "https://petstore.swagger.io/v2/swagger.json", spec: <%=spec%>, dom_id: '#swagger-ui', docExpansion: "none", deepLinking: true, presets: [ SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset, ], plugins: [ SwaggerUIBundle.plugins.DownloadUrl, ], layout: "StandaloneLayout", }); window.ui = ui; } </script> <script src="<%=backendUrl%>/plugins/documentation/swagger-ui-bundle.js"></script> <script src="<%=backendUrl%>/plugins/documentation/swagger-ui-standalone-preset.js"></script> </body> </html>