@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
13 lines (12 loc) • 429 B
JavaScript
module.exports = function realmPlugin() {
return {
id: 'realm-plugin',
processContent: () => {},
afterRoutesCreated: () => {},
loaders: { 'test-loader': () => {} },
requiredEntitlements: ['test-entitlement'],
ssoConfigSchema: { type: 'object', additionalProperties: true },
redoclyConfigSchema: { type: 'object', additionalProperties: false },
ejectIgnore: ['Navbar.tsx', 'Footer.tsx'],
};
};