We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81ba0f4 commit 151018dCopy full SHA for 151018d
packages/@ember/debug/ember-inspector-support/index.ts
@@ -8,6 +8,9 @@ import Application from '@ember/application';
8
import type ApplicationInstance from '@ember/application/instance';
9
10
export function setupEmberInspectorSupport() {
11
+ if ((window as any).EMBER_INSPECTOR_SUPPORT_BUNDLED) {
12
+ return;
13
+ }
14
(window as any).EMBER_INSPECTOR_SUPPORT_BUNDLED = true;
15
window.addEventListener('ember-inspector-loaded' as any, (event: CustomEvent) => {
16
const adapter = event.detail.adapter;
0 commit comments