mirror of https://github.com/grafana/grafana.git
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
import { config } from '@grafana/runtime';
|
||
|
|
||
|
/**
|
||
|
* Returns true if the current instance is using the frontend-service.
|
||
|
* @internal
|
||
|
*/
|
||
|
export function isFrontendService() {
|
||
|
return config.bootData._femt;
|
||
|
}
|