13 lines
429 B
Plaintext
13 lines
429 B
Plaintext
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'],
|
|
};
|
|
};
|