mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
1c3606cebe
fix(kusto): move kusto off the main thread to prevent conflict with window.System
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
export default function loadKusto() {
|
|
return new Promise<void>((resolve) =>
|
|
__non_webpack_require__(['vs/language/kusto/monaco.contribution'], () => resolve())
|
|
);
|
|
}
|