-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Closed
Description
Q&A (please complete the following information)
- OS: macOS
- Browser: chrome
- Version: 96.0.4664.110
- Method of installation: dist assets
- Swagger-UI version: 4.1.3
- Swagger/OpenAPI version: OpenAPI 3.0
Swagger-UI configuration options:
const ui = SwaggerUIBundle({
url: baseRootUrl + "/test/openapi.json",
dom_id: '#swagger-ui',
docExpansion: 'none',
tagsSorter: 'alpha',
operationsSorter: 'alpha',
deepLinking: true,
pluginsOptions: {pluginLoadType: "chain"},
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
CollapsibleInfoPlugin,
ExtendedInfoPlugin
],
layout: "StandaloneLayout"
});Screenshots
How can we help?
When I have pluginsOptions set to pluginsOptions: {pluginLoadType: "legacy"}, the error above does not display, but only one of my plugins works (both my plugins wrap the same component; info). I want to be able to chain load these plugins, but can't seem to do it
