|
|
@@ -4,6 +4,11 @@ export class ActivatePluginService {
|
|
|
|
|
|
static activateAll(): void {
|
|
|
const { pluginActivators } = window as CustomWindow;
|
|
|
+
|
|
|
+ if (pluginActivators == null) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
Object.entries(pluginActivators).forEach(([, activator]) => {
|
|
|
activator.activate();
|
|
|
});
|